*{
    margin: 0;
}

body{
    font-family: 'Cute Font', sans-serif;
    background-color: #151515;
    min-width: 600px;
}

.navbar{
    width: 100%;
    height: 50px;
    background-color: black;
}

.navbar-container{
    display: flex;
    align-items: center;
    padding: 0 50px;
    height: 100%;
    color: white;
    font-family: 'Cute Font', sans-serif;
}

.logo-container{
    flex: 1;
}

.logo{
    font-size: 30px;
    color :rgb(0, 247, 255);
}

.menu-container{
    flex: 6;
}

.menu-list{
    display: flex;
    list-style: none;
}

.menu-list-item{
    margin-right: 30px;
    cursor : pointer;
}

.menu-list-item.active{
    font-weight: bold;
}

.profile-container{
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.profile-text-container{
    margin: 0 20px;
}

.profile-text{
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.profile-text.active{
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: black;
}

.profile-picture{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #151515;
}

.toggle{
    width: 40px;
    height: 20px;
    background-color: white;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
}

.toggle-icon{
    color: goldenrod;
}

.toggle-ball{
    width: 18px;
    height: 18px;
    background-color: black;
    position: absolute;
    right: 1px;
    border-radius: 50%;
    cursor: pointer;
    transition: 1s ease all;
}

.sidebar{
    width: 50px;
    height: 100%;
    background-color: black;
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;

}

.iconside{
    display: flex;
    cursor: pointer;
}

.iconsidereq{
    display: flex;
    cursor: pointer;
}

.iconname{
    align-items: center;
    text-align: center;
    margin-left: 40px;
    color: aliceblue;
    background-color: black;
    position: absolute;
    opacity: 0;
}

.iconside:hover .iconname{
    opacity: 1;
}

.left-menu-icon{
    color: white;
    height: 70px;
    width: 30px;
    margin-bottom: 30px;
}

.left-menu-icon-request{
    color: white;
    height: 40px;
    width: 40px;
    margin-bottom: 30px;
    margin-top: 20px;
}

.iconnamereq{
    align-items: center;
    text-align: center;
    margin-top: 18px;
    margin-left: 45px;
    color: aliceblue;
    background-color: black;
    position: absolute;
    opacity: 0;
}

.iconsidereq:hover .iconnamereq{
    opacity: 1;
}

.container{
    background-color: #151515;
    min-height: calc(100vh - 50px);
    color: white;
}

.content-container{
    margin-left: 50px;
}

.feature-content{
    height: 50vh;
    padding-top: 20px;
    padding-left: 20px;
}

.featured-title{
    width: 300px;
}

.featured-desc{
    width: 500px;
    color: lightgray;
    margin: 30px 0;
}

.featured-button{
    font-family: 'Averia Libre', system-ui;
    background-color: red;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

.song-list-container{
    padding: 20px;
    overflow-x: hidden;
}

.song-list-wrap{
    position: relative;
    overflow: hidden;
}

.song-list{
    display: flex;
    align-items: center;
    height: 300px;
    transform: translateX(0);
    transition: 1s ease-in-out;
}

.song-list-item{
    margin-right: 30px;
    position: relative;
}

.song-list-item:hover .song-list-item-img{
    transform: scale(1.2);
    margin: 0 30px;
    opacity: 0.5;
}

.song-list-item:hover .song-list-item-title{
    opacity: 1;
}
.song-list-item:hover .song-list-item-desc{
    opacity: 1;
}
.song-list-item:hover .song-list-item-button{
    opacity: 1;
}

.song-list-item-img{
    transition: all 1s ease-in-out;
    height: 200px;
    width: 270px;
    object-fit: cover;
    border-radius: 20px;
}

.song-list-item-title{
    background-color: #333;
    color: white;
    padding: 0 10px;
    font-size: 32px;
    font-weight: bold;
    position: absolute;
    top: 10%;
    left: 50px;
    opacity: 0;
    transition: 1s all ease-in-out;
}

.song-list-item-desc{
    background-color: #333;
    padding: 10px;
    font-size: 14px;
    position: absolute;
    top: 30%;
    left: 50px;
    width: 230px;
    opacity: 0;
    transition: 1s all ease-in-out;
    color: white;
}

.song-list-item-button{
    font-family: 'Averia Libre', system-ui;
    background-color: red;
    padding: 10px;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    position: absolute;
    bottom: 20px;
    left: 50px;
    opacity: 0;
    transition: 1s all ease-in-out;
}

.arrow{
    font-size: 120px;
    position: absolute;
    top: 90px;
    right: 0;
    color: gray;
    opacity: .5;
}

.container.active{
    background-color: white;
    color: #151515;
}

.song-list-item-title.active{
    background-color: white;
}

.navbar-container.active{
    background-color: white;
    color: black;
}

.sidebar.active{
    background-color: white;
}

.left-menu-icon.active{
    color: black;
}

.toggle.active{
    background-color: black;
}

.toggle-ball.active{
    background-color: white;
    transform: translateX(-20px);
}

.logo.active{
    color: blue;
}

.feature-content.active{
    background-color: white;
}

@media only screen and (max-width: 600px) {
    .menu-container{
        display: none;
    }
}