
@import url('https://fonts.googleapis.com/css2?family=Mooli&display=swap');

body{
    font-family: 'Mooli', 'sans-serif';
    font-size: 20px;
    color: rgb(42, 57, 80);
    word-spacing: 2px;
    background-color: rgb(223, 223, 217);
}
header {
    height: 100%;
}
header H1{
    background-color: tan;
    font-size: 42px;
    text-indent: 1%;
    display: block;
    background-size: 100px;
}
nav{
    background-color: rgb(117, 103, 84);
}
nav li{
    display: inline;
    list-style: none;
}
nav a{
    display: inline-block;
    padding: 10px;
    color: thistle;
}
H1{
    color: black;
    font-size: 140%;
    margin-bottom: 20px;
}
h2{
    color: black;
    font-size: 120%;
    margin-bottom: 10px;
}
p{
    line-height: 25px;
    margin-bottom: 12px;
}
footer{
    background-color: rgb(102, 101, 100);
    color: thistle;
    font-size: 85%;
    padding: 10px;
}
main{
    float: left;
    box-sizing: border-box;
    padding: 20px;
    width: 60%;
}
#food-blog{
    width: 55%;
}
main#blog p{
    line-height: 30px;
}
aside{
    float: left;
    box-sizing: border-box;
    padding: 2%;
    width: 40%;
}
aside ul{
    margin-left: 25px;
    list-style-type: circle;
}
ul#blogs {
    list-style-type: disc;
    width: 80%;
    list-style-position: inside;
}
main li{
    margin: 15px;
}
#content{
    margin-left: 20px;
    margin-right: 20px;
    overflow: auto;
}
img{
    border: 5px solid goldenrod;
}
a{
    color: rgb(95, 95, 189);
}
#contactForm{
    margin: 20px;
}
main#blog{
    font-size: 24px;
    width: 80%;
}
main#photos{
    text-align: center;
    width: 100%;
}
body pre{
    font-size: 16px;
    margin-left: -350px
}
#displayImage{
    width: 75%;
}#monkeyImg{
    width: 50%;
    margin-left: 25%
}
#harambeImg{
    width: 80%;
    margin-top: 5px;
}
#steakImg, #slicedSteakImg {
    width: 45%;
    margin: 1%;
}
#hamburgerImg {
    width: 80%;
    margin-top: 5px;
}
#displayDescription{
    text-align: center;
    width: 80%;
    margin-left: 9%;
    margin-right: 9%;
}
#smashBurgerImg{
    width: 65%;
    margin-left: 10%;
}
#mobile-nav-button{
    position: absolute;
    top: 0px;
    right: 0px;
    width:44px;
    height: 44px;
    font-weight: bold;
    line-height: 44px;
    text-align: center;
    cursor: pointer;
    display: none;
}

@media screen and (max-width: 800px) {
    main{
        float: none;
        width: 100%;
    }
    aside{
        float: none;
        width: 100%
    }
    #main-nav{
        position: absolute;
        top: 42px;
        height: 100%;
        width: 0;
        transition: width .5s;
        z-index:100;
    }
    #mobile-nav-button{
        display: block;
    }
    #main-nav li{
        overflow: hidden;
    }
    #main-nav.show{
        width: 225px;
    }
    #main-nav ul li{
        display: block;
    }
}

