body {
    font-family: 'Times New Roman', Times, serif, ; /* Change this to a font you like */
    height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}header{
    background-color: darkgoldenrod;
    height: 60px;
    flex-shrink: 0;
    @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap');
}header h1{
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: white;
}nav{
    background-color: darkred;
    height: 30px;
    display: flex;
    align-items: center;
}nav ul{
    margin: 0;
    padding: 15px;
    display: flex;
}nav li{
    display: inline-block;
    list-style: none;
    height: 30px;
}nav a{
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 10px 0 10px;
    color: lightgreen;
}#content{
    display: flex;
    flex: auto;
    flex-direction: row;
}main{
    width: 70%;
    box-sizing: border-box;
    padding: 20px;
}aside{
    width: 30%;
    box-sizing: border-box;
    padding: 20px;
    background-color: orange;
}footer{
    background-color: goldenrod;
    color: aliceblue;
    font-size: 85%;
    flex-shrink: 0;
}h1{
    color: blueviolet;
    font-size: 140%;
    margin-bottom: 20px;
}p{
    margin-bottom: 12px;
}.profile-pic {
    width: 200px; 
    height: auto;
    border-radius: 10px;
}#menu-button{
    display: none;
}
pre{
    background-color: black;
    color: yellow;
    padding: 20px;
    border-radius: 12px;

}
#image-gallery {
    text-align: center;
    margin-top: 20px;
  }
  
  #mainImg {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
  }
  
  #caption {
    font-size: 18px;
    margin-top: 10px;
    color: #333;
  }
  
@media all and (max-width : 800px) {
    header{
        height: 44px;
    }

    #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: #fff;
        background-color: #333;
        width: 44px;
        cursor:pointer;
        z-index: 1000;
    }
    nav{
        height: auto;
        display: none;
    }
    nav.open{
        display: block;
    }
    nav ul li {
        display: block;
        text-align: left;
        padding: 10px;
        
    }
}

