* {
    margin: 0;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
}

h1{
    font-weight: normal;
    font-size: 60px;
}

h2{
    font-weight: normal;
    font-size: 48px;
}

h3{
    font-weight: normal;
    font-size: 36px;
}

#wrapper {
    display: grid;
    grid-template-columns: minmax(0px, 1fr) repeat(8, minmax(0, 150px)) minmax(0px, 1fr);
    grid-auto-rows: minmax(0, auto);
    background-color: #F4EBE7;
}

header {
    background-color: #1e1e1e;
    grid-column: 1 / -1;
    grid-row: 1 / 2;
}

header a{
    text-decoration:none;
    color: #ffffff;
    margin: 50px 0px 50px 10%;
}

nav{
    display: flex;
    font-weight: bold;
    margin-top: 25px;
    padding: 0px;
    grid-column: 7 / -1;
    grid-row: 1 / 2;
    flex-flow: row nowrap;
    list-style-type: none;
    z-index: 5;
}

nav ul li{
    display:inline-flex;
}

nav a{
    color:#ffffff;
    text-decoration: none;
    margin-left: 15px;
}

nav a:hover{
    background-color: #ffffff;
    color: black;
}

#hero{
    background-color: #D9D9D9;
    background-image: url("media/bridge.png");
    background-position: center;
    background-repeat: no-repeat;
    grid-column: 1 / -1;
    grid-row: 2 / 3;
    height: 478px;
    z-index: 4;
}

#about {
    background-color: #1E1E1E;
    grid-column: 1 / -1;
    grid-row: 3 / 4;
    height: 90px;
}

#about h2{
    display: inline-block;
    color: #ffffff;
    vertical-align: middle;
    margin: 10px 0px 10px 10%;
}

#teacher {
    background-color: #D9D9D9;
    grid-column: 1 / -1;
    grid-row: 4 / 5;
    z-index: 2;
}

#teacher h3{
    margin: 10px 0px 10px 10%;
}

.top-box{
    display:inline-flex;
    background-color: #ffffff;
    width: 100%;
    height: auto;
    align-items: center;
}

.left-flex{
    width: 50%;
}

.main-content{
    height: 100%;
    width: 50%;        
    position: relative;
    padding:20px;
    font-size: 20px;
    background-color: #ffffff;
}

main {
    background-color: #D9D9D9;
    grid-column: 2 / -2;
    grid-row: 5 / 6;
    padding: 10px;
    box-shadow: 3px 21px 9px rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.section-head{
    display: block;
    text-align: left;
    padding: 0px 10px 10px 10px;
    font-size: 36px;
    margin-top: -5px;
}

.instruments{
    display:block;
    list-style-type: none;
    text-align: center;
}

.instruments ul{
    list-style-type: none;
    padding-left: 0px;
}

.instruments ul li{
    display: inline-flex;
    text-decoration: none;
    list-style-type: none;
    flex-direction: column;
    max-width: 100%;
}

.instruments ul li h5{
    display:block;
    font-size: 32px;
    font-weight: bold;
}

footer {
    background-color: #1E1E1E;
    grid-column: 1 / -1;
    grid-row: 6 / 7;
    color: #ffffff;
    padding:20px;
    align-items: center;
    display:flex;
    flex-direction: column-reverse;
}

footer ul{
    list-style-type: none;
    float: right;
}

footer ul li{
    display:inline-flex;
}

