@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

body {
    background-color: antiquewhite;
}

* {
    margin: 0;
    padding: 0;
}

nav {
    font-family: 'Ubuntu', sans-serif;
}

nav ul {
    display: flex;
    align-items: flex-end;
    list-style-type: none;
    height: 65px;
    background-color: black;
    color: white;
}

nav ul li {
    padding: 0 12px;
    line-height: 65px;
}

.brand img {
    width: 44px;
    padding: 0 8px;
}

.brand {
    display: flex;
    align-items: center;
    font-weight: bolder;
    font-size: 1.3rem;
    margin-right: auto;
    height: 65px;
}

.container {
    min-height: 72vh;
    background-color: black;
    color: white;
    font-family: 'Varela Round', sans-serif;
    display: flex;
    margin: 23px auto;
    width: 70%;
    border-radius: 12px;
    padding: 34px;
    background-image: url('modi-bg.png');
    background-position: right;
    background-repeat: no-repeat;
}

.bottom {
    position: sticky;
    bottom: 0;
    height: 150px;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.icons {
    margin-top: 10px;
}

.icons i {
    cursor: pointer;
}

#myProgressBar {
    width: 80vw;
    cursor: pointer;
}

.songItemContainer {
    margin-top: 74px;
}

.songItem {
    height: 50px;
    display: flex;
    background-color: white;

    color: black;
    margin: 12px 0;
    justify-content: space-between;
    align-items: center;
    border-radius: 34px;
}

.songItem img {
    width: 43px;
    margin: 0 23px;
    border-radius: 34px;
}

.songName {
    width: 50%;
}

.timestamp {
    margin-right: 10px;
}

.timestamp i {
    cursor: pointer;
}

.songInfo {
    position: absolute;
    left: 10vw;
    font-family: 'Varela Round', sans-serif;
}

.songInfo img {
    opacity: 0;
    transition: opacity 0.4s ease-in;
}

.credit-YT-Playlist {
    color: black;
    width: 100%;
    height: 10%;
    padding-bottom: 10px;
    text-align: center;
    font-family: 'Varela Round', sans-serif;
}

@media only screen and (max-width: 1300px) {
    body {
        background-color: black;
    }

    .container {
        background-image: none;
        align-items: center;
        justify-content: center;
    }

    .container h1 {
        text-align: center;
    }

    .credit-YT-Playlist {
        color: white;
    }

    .songInfo {
        padding-top: 120px;
    }
}

@media only screen and (max-width: 768px) {

    .container {
        width: 80%;
        margin: 0px;
    }

    .songName {
        width: 40%;
    }

    .timestamp {
        margin-right: 10px;
        margin-left: 0;
    }

    .songInfo img {
        display: none;
    }

    .songInfo {
        padding-top: 150px;
    }

    .bottom {
        height: 200px;
    }
}


@media only screen and (max-width: 386px) {

    nav ul,
    .brand {
        font-size: 1rem;
    }
}