/* global */

@font-face {
  font-family: Kanit;
  src: url(./fonts/Kanit-Regular.ttf);
}

@font-face {
  font-family: Karla;
  src: url(./fonts/Karla-Regular.ttf);
}

.grid-2{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

body{
    margin: 0;
    padding: 0;
    font-family: 'Kanit';
    background-color: #0B0719;
    color: #ADD8E6;
}

h1{
    font-size: 24;
    font-family: Karla;
    color: white;
}

h2{
    font-size: 20;
    font-family: Karla;
    color: white;
}

h3{
    font-size: 18;
    font-family: Karla;
    color: white;
}

a{
    font-size: 16;
    font-family: Karla;
    color: #ADD8E6;
    text-decoration: none;
}

p{
    font-size: 16;
    font-family: Karla;
    color: #ADD8E6;
    text-decoration: none;
}

/* section 1 */
.section-1{
    font-family: Karla;
    padding-top: 30vh;
    text-align: center;
}

.section-1 p{
    font-family: Karla;
    font-size: 1.1rem;
    color: #ADD8E6;
    padding-bottom: 10px;
    margin:0;
}

.section-1 h2{
    font-family: Karla;
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.section-1 a{
    font-family: Karla;
    font-size: 1.5rem;
    padding: 10px;
}

/* section 2 */
.section-2{
    font-family: Karla;
    padding-top: 3vh;
    text-align: left;
}

.section-2 h2{
    font-family: Karla;
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.section-2 p{
    color: #ADD8E6;
    font-family: Karla;
    font-size: 1.1rem;
    padding-bottom: 10px;
    margin:0;
}

.section-2 a{
    font-family: Karla;
    display: block;
    padding: 5px;
    font-size: 1.2rem;
    padding-left: 0;
}

.section-2 li{
    font-family: Karla;
    display: block;
    padding: 5px;
    font-size: 1.2rem;
    padding-left: 0;
    text-decoration: none;
}

/* animations / utilities */
.section-2 a:hover{
    color: #C0C0C0;
    cursor: pointer;
    transition: 0.2s;
}

.section-1 a:hover{
    color: #C0C0C0;
    cursor: pointer;
    transition: 0.3s;
}

.white:hover{
    position: relative;
    padding-left: 10px;
}

/* media queres */
@media(max-width:780px){
    .grid-2{
        grid-template-columns: 1fr;
    }
    .section-1{
        padding:0;
        padding-top: 5rem;
    }
    .section-2{
        padding: 0;
        padding-left: 1.5rem;
        padding-top: 2rem;
    }
}
