@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;1,300&display=swap');

*{
    margin:0;
    padding:0;
}

body{
    background-color: #bdb993;
}

.brand{
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1rem;
}
.brand img{
    margin-top: 7px;
    border-radius: 50px;
    width: 38px;
    padding: 0px 4px;
}
.nav-bar{
    font-family: 'Ubuntu', sans-serif;
    position: sticky;
    top: 0;
    height: 50px;
    background-color: rgb(0, 0, 0);
}

nav ul{
  display: flex;
  align-items: center;
  color: white;
  list-style: none;
  font-size: small;
}
.myInfo{
    display: flex;
    justify-content: space-between;
    align-items: ceter;
    margin-left: 10px;
}
a{
    text-decoration: none;
    color: white;
    font-family: 'Ubuntu', sans-serif;
    font-size: larger;
    font-weight: 300;
    padding: 0px 8px;
    cursor: pointer;
}
a:hover{
    color: #d60808d2;
    text-decoration: underline;
    text-shadow: #2a2828;
}

.container{
    background-color: black;
    color:white;
    font-family: 'Ubuntu', sans-serif;
    display: flex;
    margin: 12px auto;
    width: 78%;
    border-radius: 6px;
    background-image: url('img/bg.png');
}
.songList{
    padding: 15px;
}
.songList h1{
    font-size: 1.3rem;
    margin: 0px auto;
}

.songItemContainer{
    margin-top: 24px;
}
.songItem{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: black;
    background-color: white;
    height: 50px;
    border-radius: 35px;
    margin: 12px 0px;
    border: 2px solid red;
    /* margin-left: 12px; */
}
.songName{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 8px;
    margin-right: 20px;
    width: 100%;
    font-size: 0.8rem;
    font-family: 'Ubuntu', sans-serif 
}
.songItem img{
    height: 48px;
    margin-left: 2px;
    border-radius: 50px;
}

.bottom{
    position: sticky;
    bottom: 0;
    height: 90px;
    background-color: rgb(0, 0, 0);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 100%;
}
#myProgressBar{
    width: 78vw;
    cursor: pointer;
    height: 3px;
    margin-top: 1px;
    margin-top: -17px;
}
.icons{
    display: flex;
    margin-top: 12px;
}
.icons i{
    cursor: pointer;
    padding: 0px 4px;
}
.gif_box{
    position: absolute;
    left: 3vw;
    display: flex;
    flex-direction: column;
    width: 71px;
    color: white;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.6rem;
}
.gif_box img{
    transition: 0.6s;
    margin-right: 3px;
    height: 8px;
    
}
#gif{
    opacity: 0;
}


@media only screen and (min-device-width : 180px) and (max-device-width : 333px) {
    /* Styles */
    .myInfo{
        display: flex;
        justify-content: space-between;
        align-items: ceter;
        margin-left: 5px;
    }
    li.brand {
        display: flex;
        align-items: center;
        font-size: 13px;
        width: 92px;
    }

    a{
        text-decoration: none;
        color: white;
        font-family: 'Ubuntu', sans-serif;
        /* font-size: larger; */
        /* font-weight: 300; */
        padding: 0px 4px;
        cursor: pointer;
    }
    .songItem {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        color: black;
        background-color: white;
        height: 42px;
        border-radius: 35px;
        margin: 12px 0px;
        border: 2px solid red;
        /* margin-left: 12px; */
    }
    .songItem img {
        height: 40px;
        margin-left: 2px;
        border-radius: 50px;
    }
    .songName {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 8px;
        margin-right: 20px;
        width: 100%;
        font-size: 12px;
        font-family: 'Ubuntu', sans-serif;
    }
}
