* {
    margin: 0;
    padding: 0%;
    box-sizing: border-box;
}
body {
   background-image: url("../images/scott-campbell-boombox-collection-record-collection-square.jpg"); 
} 

.navbar {
    background-color: hsl(0,0%, 7%);
    background-image: linear-gradient(45deg, #404247 0%, #666973 52%, #d3d9e8 90%);
    padding: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0 1rem;
    
}
 h1 {
    color: #ffffff;
    font-size: 50px;
    text-align: right; 
    text-shadow: 2px 2px 4px #000000;
    margin-left: 15px;
    padding-top: 10px;
    font-family: fantasy;
}

/* Chris was here */
h2 {
    font-size: 30px;
    font-weight: 700;
}
ul {
    margin-top: 20px;
}



.search-container {
    margin-left: 460px;
}

.search-bar {
    width: 72%;
    font-weight: 900;
    
}

.search-button {
    color: black;
    
}

.search-bar:hover, .search-button:hover{
    text-shadow: 1px;
    font-weight: 900;
    list-style-type: none;
}



/* Added this class to align the video correctly. -Chris Zichko */
.main-container {
    display: flex;
    justify-content: space-evenly;
    padding-top: 20px;
}

 .event-list{
     text-align: center;
     width: 200px;
     height: 300px;
     border-radius: 10px;
     margin-left: 100px;
     margin: auto;
     padding-bottom: 15px;
     
 }

 /* Had to edit these classes to give the video the correct position and size and rounded the corners*/
 .album-cover, 
 .music-video {
    text-align: right;
    width: 500px;
    height: 300px;
    border-radius: 10px;
    margin-right: 100px;
    margin-top: 100px;
    
 }
 .favorite-artist {
     background-color: #000000;
     color: #ffffff;
     width: 180px;
     max-height: 300px;
     
 }
 .favorite-artist h3 {
     columns: #ffffff;
     font-size: 18px;
     font-weight: bold;
     text-align: center;
     padding: 10px 0 10px 0;
     
 }

 .favorite-artist button {
     margin-left: 38px;
 }

 .favorite-artist li {
     list-style-type: none;
     text-align: center;
 }

 

 /* Chris was here */

@media screen and (max-width: 980px) {
    header { 
        justify-content: center;
        padding-bottom: 0;
        position: relative;
    }    

    header h1  {
        width: 100%;
        text-align: center;
    
    }
    .search-container {
        margin-top: 20px;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-left: 0px;

    }
    form.search-bar {
        display: flex;
        justify-content: center;

    }

    #mainContainer {
        display: grid;
    }

    .music-video {
        width: auto;
        height: auto;
        grid-column: 1;
        grid-row: 1;
        padding-bottom: 5px;
    }

    .event-list {
        width: 75;
        grid-column: 1;
        grid-row: 1;
        padding-bottom: 5px;
    }

    .favorite-artist {
        width: auto;
        grid-column: 1;
        grid-row: 1;
        padding-bottom: 5px;
    }

    .favorite-artist h3 {
        text-align: center;
        margin: 10px;
    }

    
   
    
    
}
@media screen and (max-width: 768px) {
        .navbar {
        text-align: center;
        padding: 0 auto;
        width: 100%;
    }

    .favorite-artist button {
    padding-left: 50px;
}

}
@media screen and (max-width: 475px) {
    .navbar {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    padding-bottom: 15px;
    width: 100%;
   }

   .favorite-artist button {
    text-align: center;
    margin-left: 70px;
}


   

   
}
