body{
    font-family: 'Courier New', Courier, monospace;
    height: 100vh;
    display: flex;
    flex-direction: column;
}
header{
    background-color: royalblue;
    height: 60px;
    flex-shrink: 0;
}
header h1 {
    margin: 10px;
    font-family: 'Inconsolata', monospace;
    font-size: x-large;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
    background: linear-gradient(45deg, #d4af37, #f0e68c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent; /* fallback */
    -webkit-text-fill-color: transparent;
}
nav{
    background-color: royalblue;
    height: 30px;
}
li{
    display: inline-block;
    list-style: none;
    height: 30px;
}
A{
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 10px 0 10px;
    background: linear-gradient(45deg, #d4af37, #f0e68c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent; /* fallback */
    -webkit-text-fill-color: transparent;
}
div#content{
    display: flex;
    flex: auto;
    flex-direction: row;
}
main{
    width: 70%;
    box-sizing: border-box;
    padding: 0px;
}
aside{
    width: 30%;
    box-sizing: border-box;
    padding: 0px;
    background-color: royalblue;
}
aside h1{
    margin: 10px;
}
aside ul {
    margin: 10px;
}
footer{
    color: gold;
    font-size: 85%;
    flex-shrink: 0;
    background-color: royalblue;
}
h1 {
    font-family: 'Inconsolata', monospace;
    font-size: 140%;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
    background: linear-gradient(45deg, #d4af37, #f0e68c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent; /* fallback */
    -webkit-text-fill-color: transparent;
}
p{
    margin-bottom: 12px;
}
div#menu-button{
    display: none;
}
@media all and (max-width:800px){
    header{
        height: 44px;
    }
    div#content{
        display: block;
    }
    main{
        width: 100%;
    }
    aside{
        width: 100%;
    }
    div#menu-button{
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        height: 44px;
        text-align: center;
        line-height: 44px;
    }
    nav{
        height: auto;
        display: none;
    }
    li{
        display: block;
    }
    nav.open{
        display: block;
    }
    aside h1{
        margin: 0px;
    }
    aside ul {
        margin: 0px;
    }
    header h1{
        margin: 0px;
    }
}
.responsive-img {
  max-width: 100%;
  height: auto;
}