@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap');
/* above is google font Roboto Condensed font-family is: 'Roboto Condensed', sans-serif; */

html {
    background-color: #BF463B;
}
body {
    font-family:Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #F2CE1B;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
a {
    color:#2582B3;
}
main {
    float:left;
    box-sizing: border-box;
    padding: 20px;
    width: 70%;
}
aside {
    float: left;
    box-sizing: border-box;
    padding: 20px;
    width: 30%;
    font-size: large;
}
header {
    background-color: #ff7f50;
    height: 60px;
}
div#content {
    overflow: auto;
}
header h1 {
    color: #2582B3;
    line-height: 60px;
    font-size: 30px;
    font-family: 'Roboto Condensed', sans-serif;
}
nav {
 background-color: #B34B25;
}
nav li {
    display: inline;
    list-style: none;
}
nav a {
    display: inline-block;
    padding: 10px;
    color: #42BFFF;
}
h1 {
    font-size: 140%;
    font-weight: bold;
    margin-bottom: 20px;
    color: #F2EFEB;
}
p {
    line-height: 16px;
    margin-bottom: 12px;
}
footer {
    font-size: 85%;
    padding: 10px;
    background-color: #FF7F50;
    color: #2582B3;
    margin-top: auto;
}
h2 {
    margin: 4px;
    padding: 20px;
}
h3 {
    margin: 4px;
    padding: 20px;
}
div#mobile-nav-button {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 44px;
    height: 44px;
    font-weight: bold;
    line-height: 44px;
    text-align: center;
    display: none;
}

@media screen and (max-device-width: 800px){
    main {
        float: none;
        width: 100%;
    }
    aside {
        float: none;
        width: 100%;
    }
    div#mobile-nav-button {
        display: block;
    }
    #main-nav {
        position: absolute;
        top: 60px;
        height: 100%;
        width: 0;
        transition: width .5s;
        z-index: 100;
    }
    #main-nav li {
        overflow: hidden;
    }
    #main-nav.show {
        width: 250px;
    }
    #main-nav ul li {
        display: block;
    }
    #self-image {
        transform: rotate(90deg);
        width: inherit;
        height: inherit;
    }
    #guitar-case {
        transform: rotate(180deg);
    }
}

