@font-face {
    font-family: Poppins;
    src: url(fonts/Poppins-Regular.ttf);
}

*{
    border: 0px;
    margin: 0px;
    font-family: Poppins, "Helvetica Neue", sans-serif;
}

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;
    transition: background-color 0.5s;
    z-index: 1;
}

nav:hover{
    background-color: black;
}

#logo{
    padding: 5px;
    padding-right: 15px;
    margin-left: 20px;
    width: 45px;
}

#logo img{
    width: 100%;
    border-radius: 150%;
}

nav a{
    text-decoration: none;
    font-weight: bolder;
    color: #FB5344;
    display: flex;
    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: 1;
}

nav li{
    display:flex;
    align-items: center;
    width: 90px;
    justify-content: center;
    transition: box-shadow 0.5s;
}

#homehero, #abouthero, #beathero{
    grid-row: 3/4;
    grid-column: 1/-1;
    height: 400px;
    width: 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
}

#homehero{
    background-image: linear-gradient(rgb(0, 0, 0),rgba(255, 255, 255, 0),rgb(0, 0, 0)), url(images/homehero.png);
}

#homehero img, #beathero img{
    width: 75%
}

#homehero h1{
    text-shadow: 5px 5px 5px black;
}

#abouthero{
    background-image: linear-gradient(rgb(0, 0, 0),rgba(255, 255, 255, 0),rgb(0, 0, 0)), url(images/abouthero.jpg);
}

#beathero{
    background-image: linear-gradient(rgb(0, 0, 0),rgba(255, 255, 255, 0),rgb(0, 0, 0)), url(images/beathero.png);
}

#abouthero img{
    width: 150px;
    border-radius: 50%;
    box-shadow: 5px 5px 5px black;
    border: 1px inset black;
}

h1{
    color: #FB5344;
    font-size: 500%;
    font-weight: bold;
    text-align: center;
}

h2{
    color: #7A7A7A;
    font-size: 300%;
    font-weight: bold;
}

h3{
    color: white;
    font-weight: bold;
    font-size: 25px;
}

h4{
    color: white;
    font-weight: lighter;
}

p{
    color: white;
    font-weight: lighter;
}

.beatlink{
    z-index: 1;
}

main{
    grid-row: 4/5;
    grid-column: 2/-2;
    background-color: black;
    height: auto;
}

#blazeplayer{
    grid-column: 1/-1;
    overflow: hidden;
    margin: 0;
}

#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;
}

#disclaimer{
    text-align: center;
    padding-bottom: 10px;
}

#business{
    text-align: center;
    padding-bottom: 10px;
}

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;
    justify-content: center;
    padding-left: 5px;
}

footer p{
    color: white;
}

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: 2px solid rgb(67, 67, 67);
    border-radius: 30px;
}

.beatinfo{
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.289);
    height: 57px;
    transition: height 1s;
}

.beatinfo h3:hover{
    text-decoration: underline;
}

.covers:hover .beatinfo{
    height: 100%;
}

#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;
}

.pageHeading{
    display:flex;
    justify-content: center;
}

#popularbeats{
    display: flex;
    flex-direction: column;
}

#popularbeats ul{
    display: flex;
    list-style-type: none;
    padding-left: 220px;
}

#popularbeats li{
    color: white;
}

#popularbeats li:nth-of-type(1){
    flex-grow: 1;
    width: 200px;
}

#popularbeats li:nth-of-type(2){
    width: 120px;
}

#popularbeats li:nth-of-type(3){
    width: 83px;
}

#popularbeats li:nth-of-type(4){
    width: 430px;
}

.playbutton{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.playbutton button{
    display: flex;
    position: absolute;
    background-color: #0000006d;
    border: 1px solid white;
    box-shadow: 0 2px 3px 0 rgba(0,0,0,.15);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.playbutton button img{
    width: 30px;
    height: 30px;
    padding-left: 4px;
}

.beat{
    display: flex;
    padding: 10px;
    align-items: center;
    box-shadow: 0 1px 0 0 #1f1f1f;
}

.beat h3{
    padding-left: 10px;
    width: 160px;
}

.beat h3:hover{
    text-decoration: underline;
}

.beat a{
    text-decoration: none;
}

.beat p{
    margin: 0 40px;
    width: 40px;
}

.beat img{
    height: 100px;
    width: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.tags{
    flex-grow: 1;
}

.tag{
    background-color: #1f1f1f;
    padding: 15px;
    color:#9d9d9d;
    border-radius: 30px;
}

.tag:nth-of-type(1){
    margin-right: 10px;
}

.price{
    margin-left: 10px;
    background-color: #005ff8;
    width: 100px;
    height: 50px;
    border-radius: 5px;
    font-size: 16px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.price:hover{
    background-color: #2478ff;
}

iframe{
    margin: 10px;
}

.aboutsection{
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.aboutsection{
    text-align: justify;
    text-justify: inter-word;
}

#biography{
    flex-direction: column;
}

#biography div{
    display: flex;
    flex-direction: row;
}

#biography div p{
    max-width: 400px;
}

#biography p{
    padding: 20px;
}

#biography h3{
    margin-top: 50px;
}

form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width:100%;
    gap: 30px;
    margin-bottom: 20px;
}

form div{
    width: 100%;
    display: flex;
}

form div label{
    width: 100px;
    text-align: right;
}

input, textarea{
    font-size: 1rem;
    padding: 10px;
    color: rgb(116, 116, 116);
    border-bottom: 1px solid white;
    background-color: black;
    flex-grow: 2;
    margin-right: 20px;
}

#email{
    text-align: left;
}

#submit{
    margin-left: auto;
    background-color: #005ff8;
    color: black;
    border: none;
    border-radius: 10px;
    padding: 15px;
}

#submit:hover{
    cursor: pointer;
    background-color: #1e88e5;
}

input:focus{
    border: none;
}

label{
    padding: 10px;
    text-align: right;
    color: white;
}

#mySubmit{
    width: 10rem;
    border-radius: 5px;
    background-color: #1e88e5;
    color: white;
    border: none;
    margin-bottom: 20px;
}

@media only screen and (max-width: 1025px){
    .tags{
        display: none;
    }

    #popularbeats li:nth-of-type(4){
        display: none;
    }
    
    .beat h3{
        width: 300px;
    }

    #popularbeats li:nth-of-type(3){
        width: 315px;
    }
}

@media only screen and (max-width: 992px) {
    #wrapper{
        grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 128px)) minmax(0px, 1fr);
    }

    #licenses div{
        width: 250px;
    }

    .beat h3{
        width: 200px;
    }

    #popularbeats li:nth-of-type(3){
        width: 200px;
    }
}

@media only screen and (max-width: 768px) {
    #wrapper{
        grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 100%)) minmax(0px, 1fr);
    }

    #logoname{
        display: none;
    }

    #licenses{
        display: flex;
        flex-direction: column;
    }
    #licenses div{
        width: 300px;
    }

    #popularbeats li{
        display: none;
    }

    .beat{
        justify-content: center;
    }

    .beat p{
        display: none;
    }

    .beat button p{
        display: block;
    }
}

@media only screen and (max-width: 480px) {
    #logo{
        display: none;
    }

    nav{
        height: 40px;
    }

    nav ul{
        flex-grow: 0;
        justify-content: center;
    }

    nav a{
        font-size: 12px;
    }

    nav li{
        max-width: 60px;
    }
}