@import url('https://fonts.googleapis.com/css2?family=Bokor&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&display=swap');

body{
    font-family: 'Times New Roman';
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: gray;
}

header{
    background-color: darkgreen;
    height: 60px;
    flex-shrink: 0;
}

h1{
    font-family: "Kanit", serif;
    font-weight: 200;
    font-style: normal;
    color: black;
    font-size: 140%;
    margin-bottom: 20px;
}

nav{
    background-color: brown;
    height: 30px;
}

nav li{
    display: inline-block;
    list-style: none;
    height: 30px;
}

nav a{
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px, 10px;
    color: aqua;
}

div#content{
    display: flex;
    flex: auto;
    flex-direction: row;
}

main{
    width: 70%;
    box-sizing: border-box;
    padding-left: 10%;
}

aside{
    width: 30%;
    box-sizing: border-box;
    padding: 10px;
}

footer{
    background-color: white;
    color: black;
    font-size: 85%;
    flex-shrink: 0;
}

p{
    margin-bottom: 12px;
}

#menu-button{
    display: none;
}

#image-gallary{
    width: 380px;
}

#image-gallary #mainImg{
    width: 100%;
    border: 2px solid #333333;
}

@media all and (max-width : 800px)  {
    header{
        height: 44px;
    }

    div#content{
        display: block;
    }

    main aside{
        width: 100%;
    }

    #menu-button{
        display: block;
        position: absolute;
        top: 0%;
        right: 0%;
        height: 44px;
        text-align: center;
        line-height: 44px;
        color: black;
    }

    nav{
        height: auto;
        display: none;
    }

    nav li{
        display: block;
    }

    nav.open{
        display: block;
    }  

}