@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body{
    font-family: Verdana, sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

header{
    background-color: crimson;
    height: 60px;
    flex-shrink: 0;
}

header h1{
    font-family: 'Roboto', sans-serif;
    font-size: 44px;
    color: white;
}

nav{
    background-color: crimson;
    height: 30px;
}

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: black;
}

#content{
    display: flex;
    flex: auto;
    flex-direction: row;
}

main{
    width: 70%;
    box-sizing: border-box;
    padding: 15px;
}

aside{
    width: 30%;
    box-sizing: border-box;
    padding: 15px;
    background-color: lightgray;
    /* Fixed, I didn't have the Div id set to content */
}

footer{
    background-color: crimson;
    color: white;
    font-size: 85%;
    flex-shrink: 0;
}

h1{
    color: darkcyan;
    font-size: 140%;
    margin-bottom: 20px;
}

p{
    margin-bottom: 12px;
}
#menu-button{
    display: none;
}

pre{
    background-color: black;
    color: yellow;
    padding: 20px;
    border-radius: 12px;
}

input[type=button]{
    border:2px solid black;
    background-color: crimson;
    border-radius: 4px;
    padding:10px;
    color: white;
    font-weight: bold;
  }

  #image-gallery{
    width:380px;
  }

  #image-gallery #mainImg{
    width:100%;
    border: 2px solid black;
  }

  #champ{
    height: 60%;
    width: 50%;
    padding: 5px;
  }

@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: white;
        cursor: pointer;
    }

    nav{
        height: auto;
        display: none;
    }

    nav li{
        display: block;
    }

    nav.open{
        display: block;
    }
}
