  @import url('https://fonts.googleapis.com/css2?family=Roboto&family=Ubuntu&display=swap');

*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: 'Roboto', sans-serif;
    color: white;
}
.top{
    background: rgba(0,0,0,0.2)url("assets/Title-Image.png");
    background-blend-mode: darken;
      
}
section{
    height: "337px";
    width: "599px";
}
nav{
    height: 100px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
nav ul{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-bar{
    display: flex;
}
.logo{
    width: 15%;
    margin: 30px;
}
nav ul li{
    margin: 10px;    
}
.menu{
    margin: 18px;
}
.menu li{
    margin: 15px;
}
.title .name{
    font-size: 100px;
    font-weight: 300;    
}
.play-btn{
    margin: 20px 20px;
    display: flex;
    padding: 4px 13px;
    align-items: center;
    border: 1px solid white;
    border-radius: 5px;
}
.play-btn p{
    margin: 5px;
    color: black;
    font-size: 15px;
}
.info-btn{
    margin: 20px 20px;
    display: flex;
    padding: 4px 13px;
    align-items: center;
    border: 0px solid white;
    border-radius: 5px;
    background-color: rgba(250,250,250,0.5);
}
.info-btn p{
    margin: 5px;
    color: white;
    font-size: 15px;
    
}
.name-buttons{
    display: flex;
}
.title{
    margin-left: 46px;
    margin-top: 198px;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
}
.show{
    display: flex;
    align-items: end;

}
.show img{
    margin: 8px;
}
.show p{
    margin: 10px;
    letter-spacing: 5px;
}
.See-again-head{
    display: flex;
    align-items: center;
}
.middle{
    background-color: rgb(20,20,20);
}
.images{
    display: flex;
    justify-content: space-evenly;
}
.images img{
    width: 210px;
    margin-left: 20px;
}
.top .footer{
    margin-top: 100px;
    margin-left: 46px;
}
.foot-bottom{
    display: flex;
    justify-content: space-between;
}.foot-bottom img{
    margin: 20px 20px;
}
#top10{
    position: relative;
    left: 255px;
    top: 50px;
}
.topTen .images img{
    height: 146px;
    width: 100px;
}
.topTen .rank{
    display: flex;
    justify-content: center;
    margin: 10px;
}
footer{
    background-color: rgb(20,20,20);
    padding: 20px 20px;
}
.socials{
    display: flex;
}
.socials img{
    margin: 10px;
}
.bottom{
    width: 70%;
    margin: auto;
}
.artists ul li{
    color: rgb(128,128,128);
    list-style: none;
    margin: 20px 8px;
}
.artists{
    display: flex;
    justify-content: space-between;
}
.highlight{
    color: rgb(128,128,128);
    border: 2px solid rgb(128,128,128);
    padding: 10px 10px;
    max-width: fit-content;
    margin: 20px 8px;
}
.copyright{
    color: rgb(128,128,128);
    margin: 20px 8px;
}
.heading{
    display: flex;
    margin-top: 25px;
    margin-left: 46px;
    align-items: center;
}

@media (max-width:600px){
    body{
        padding:0%;
        margin: 0px ;
        display: flex;
        flex-direction: column;
        
    }
    .images{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .menu{
        display: grid;
        flex-direction: column;
        /* display: block;  */
    }
    .nav{
        display: flex;
        flex-direction: column;
    }
}