*{
    border: 0px;
    margin: 0px;
}

body{
    background-color: black;
}

#wrapper{
    display:grid;
    grid-auto-rows: minmax(0px, auto);
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr);
}

nav{
    grid-row: 1/2;
    grid-column: 1/-1;
    background-color: rgba(0, 0, 0, 0.568);
    background-image: linear-gradient(black 3%, rgba(0, 0, 0, 0.568));
    position: sticky;
    top: 0;
    display:flex;
    border-bottom: 1px solid #FB5344;
    align-items: center;
}

nav:hover{
    background-color: black;
}

nav img{
    width: 45px;
    height: 45px;
    border-radius: 100%;
    padding: 5px;
    padding-right: 15px;
    margin-left: 20px;
}

nav a{
    text-decoration: none;
    font-weight: bolder;
    color: #FB5344;
    font-family: Poppins, Roboto, "Helvetica Neue", sans-serif;
    display: block;
    text-align: center;
}

nav li:hover{
    box-shadow: 0 1px 0 0 white;
}

nav ul{
    margin: 0px;
    padding: 0px;
    height: 100%;
    display: flex;
    flex-flow: row nowrap;
    list-style-type: none;
    justify-content: flex-end;
    flex-grow: 2;
    margin-right: 20px;
}

nav li{
    display:flex;
    align-items: center;
    width: 90px;
    justify-content: center;
}

#homehero{
    grid-row: 3/4;
    grid-column: 1/-1;
    height: 400px;
    width: 100%;
    background-image: linear-gradient(rgb(0, 0, 0),rgba(255, 255, 255, 0),rgb(0, 0, 0)), url(images/homehero.png);
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
}

h1{
    color: #FB5344;
    font-size: 500%;
    font-family: Poppins, Roboto, "Helvetica Neue", sans-serif;
    font-weight: bold;
    -webkit-text-stroke: 1px black;
}

#homehero img{
    width: 75%;
}

h2{
    color: #7A7A7A;
    font-size: 300%;
    font-family: Poppins, Roboto, "Helvetica Neue", sans-serif;
    font-weight: bold;
}

h3{
    color: white;
    font-family: Poppins, Roboto, "Helvetica Neue", sans-serif;
    font-weight: bold;
    font-size: 25px;
}

h4{
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

p{
    color: white;
    font-family: Poppins, Roboto, "Helvetica Neue", sans-serif;
    font-weight: lighter;
}

main{
    grid-row: 4/5;
    grid-column: 2/-2;
    background-color: black;
    height: auto;
}

#pricesmayvary{
    color:#292929;
    font-size: 10px;
}

#licensing{
    display:flex;
    flex-direction: column;
    align-items: center
}

#licenses{
    display:flex;
    padding: 30px;
}

#licenses div{
    padding: 25px;
    margin: 10px;
    background-color: #292929;
    border-radius: 8px;
    border: 1px solid rgb(67, 67, 67);
    width: 300px;
}

#licenses p, h4{
    padding-top: 5px;
}

#licenses p{
    font-size: 10px;
    color: #7A7A7A;
}

#licensing ul{
    padding-bottom: 30px;
}

#licensing li{
    padding-top: 10px;
    padding-bottom: 10px;
    color: #7A7A7A;
    font-family: Poppins, Roboto, "Helvetica Neue", sans-serif;
}

footer{
    grid-row: 5/6;
    grid-column: 1/-1;
    background-color: #292929;
    border-top:1px solid rgb(67, 67, 67);
    margin: 0;
    height: 35px;
    display: flex;
    align-items: center;
    padding-left: 5px;
}

footer p{
    color: black;
}

footer img{
    width: 24px;
    height: 24px;
    padding-left: 10px;
    display: block;
}

.homebeats{
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
}

.covers{
    display:inline-block;
    height: 300px;
    width: 300px;
    margin: 20px;
    border-radius: 30px;
}

.beatinfo{
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.289);
}

.beatinfo h3:hover{
    text-decoration: underline;
}

.covers:hover{
    color: rgba(0, 0, 0, 0.289);
}

#makeitback{
    background-image: url(images/makeitbackcover.jpg);
    background-size: cover;
}

#window{
    background-image: url(images/windowcover.jpg);
    background-size: cover;
}

#toolate{
    background-image: url(images/toolatecover.jpg);
    background-size: cover;
}

#moments{
    background-image: url(images/momentscover.jpg);
    background-size: cover;
}

#cruising{
    background-image: url(images/cruisingcover.jpg);
    background-size: cover;
    background-position: 50%;
}

#dirt{
    background-image: url(images/dirtcover.jpg);
    background-size: cover;
}