@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Lexend:wght@100..900&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    font-family: "Lexend";
}

h1, h2, h3, h4, h5, h6{
    font-family: "Kanit";
    text-align: center;
}

h1, h2{
    color: white;
    text-shadow: 0px 0px 0.5em black;
}

h2{
    font-size: 2em;
}

:root{
    --orange: #ce621a;
    --yellow: #de892e;
    --green: #988054; 
    --blue: #3d5150; 
    --darkblue: #232e30;
}

body{
    display: flex;
    flex-direction: column;
}

main{
    display: flex;
    flex-direction: column;
}

a{
    text-decoration: none;
}

button{
    cursor: pointer;
}

/* header */
header{
    position: fixed;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1.5em;
    top: 0;
    width: 100dvw;
    z-index: 10;
}

.logo{
    height: 60px;
    vertical-align: middle;
    margin-right: 10px;
    padding: 5px 15px 5px 15px;
    background-color: #fcf8f5;
    border-radius: 15px;
}

header nav{
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 0.5em;
}

.header-btns a{
    color: white;
    border-radius: 15px;
    background-color: var(--blue);
    border: none;
    padding: 1em;
}

/* Media queries */
@media (max-width: 480px){
    
    html{
        font-size: 14px;
    }
}
