body {
    background-color: antiquewhite;
}

* {
    margin: 0;
    padding: 0;
}



nav {
    font-family: 'Kalam', cursive;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4.06rem;
    background-color: black;
    color: white;
}

nav ul {
    display: flex;
    list-style-type: none;

}

nav ul li {
    padding: 0 0.75rem;
}

nav ul li a {
    text-decoration: none;
    color: white;
    padding: 0 0.5rem;
}

nav ul li a:hover {
    color: black;
    background-color: white;
    border-radius: 0.375rem;
}


#option_container {
    display: flex;
    text-align: center;
    align-items: center;
}


.option {
    margin: 1rem;
    padding: 5rem 5.5rem;
    background-color: black;
    border-radius: 0.5rem;
    transition: transform 0.2s ease-in;
    transition: background-color 0.5s ease-out;
}

.option:hover {
    transform: scale(1.1);
    background-color: rgb(43, 42, 42);
}
a {
    text-decoration: none;
    color: white;
}

a:hover {
    cursor: auto;
}

.brand i {
    width: 2.75rem;
    padding: 0 1.25rem;
}

.brand {
    display: flex;
    align-items: center;
    font-weight: bolder;
    font-size: 1.3rem;
}


.container {
    min-height: 90vh;
    background-color: black;
    color: white;
    font-family: 'Kalam', cursive;
    display: flex;
    margin: 1.5rem auto;
    width: 90%;
    border-radius: 0.75rem;
    padding: 2rem;
    background-image: url(../images/bg.jpg);
}

.bottom {
    position: sticky;
    height: 8.125rem;
    background-color: black;
    color: white;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.icons {
    margin-top: 1rem;
}

.icons i {
    cursor: pointer;
}

#myProgressBar {
    width: 80vw;
    cursor: pointer;
}

.songItemContainer {
    margin-top: 3.125rem;
}

.songItem {
    height: 3.125rem;
    display: flex;
    background-color: white;
    justify-content: space-between;
    color: black;
    margin: 1rem 0;
    align-items: center;
    border-radius: 2rem;
}

.songItem img {
    width: 2.75rem;
    margin: 0 1.5rem;
    border-radius: 1.5rem;
    object-fit: cover;
}

.timestamp {
    margin: 0 1.5rem;
}

.timestamp i {
    cursor: pointer;
}

.songInfo {
    font-family: 'Kalam', cursive;
    position: absolute;
    left: 10vw;
}

.songInfo img {
    width: 2.625rem;
    opacity: 0;
    transition: opacity 0.4s ease-in;
    margin: 0 0.5rem;
}

.dev-team {
    margin: 0.75rem;
    padding: 1.5rem;
    border: 0.625rem solid black;
    border-radius: 0.625rem;
}

.dev {
    margin: 0.75rem;
    padding: 3.125rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dev-img {
    margin: 0.75rem;
    width: 18.75rem;
    height: 18.75rem;
    border-radius: 9.375rem;
    object-fit: cover;
}

.dev-info {
    margin: 1rem;
    padding: 6.25rem;
    font-size: 2rem;
    font-family: 'kalam', cursive;

}