*{
    margin: 0;
    padding: 0;
}
body{
    transition: background-color 0.5s ease;;
}
header{
    width: 100%;
    height: 90px;
    background-color: #00BF63;
    display: flex;
    color: white;
}
.logoContainer{
    width: 20%;
    background-image: url('images/Spotify-head-logo.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    cursor: pointer;
}
.NavContainer{
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}
.displayMenu{
    display: none;
}
.ModeContainer{
    width: 20%;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 25px;
    color: white;
}
.ModeContainer i{
    cursor: pointer;
}
#menuOpenButton{
    display: none;
}

.songsContainer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 30px;
    padding: 30px;
    margin-bottom: 75px;
}
.songCardContainer{
    width: 20%;
    height: 450px;
    background-color: #121212;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
}
#songCoverImage{
    width: 80%;
    height: 300px;
    object-fit: cover;
}
#songName{
    font-size: 20px;
}
#songPlayButton{
    font-size: 25px;
    cursor: pointer;
}
footer{
    background-color: #1E1E1E;
    width: 100%;
    height: 75px;
    display: none;
    justify-content: space-evenly;
    align-items: center;
    position: fixed;
    bottom: 0;
}
.playAheadDataContainer{
    width: 20%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
}
#playAheadSongCover{
    width: 50px;
    height: 50px;
    object-fit: contain;
}
#playAheadSongName{
    display: inline;
    word-wrap: normal;
    font-size: 18px;
}
.playAheadSongRunContainer{
    width: 60%; 
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
}
#playAheadSongBar{
    width: 90%;
    cursor: pointer;
}
#playAheadSongCurrentTime{
    font-size: 18px;
}
.playAheadButtonContainer{
    width: 20%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
}
.playAheadButtonContainer i{
    font-size: 26px;
    cursor: pointer;
}






































































































@media (max-width:600px){
    .logoContainer{
        width: 50%;
    }
    .NavContainer{
        display: none;
    }   
    .ModeContainer{
        width: 50%;
        display: flex;
        justify-content: space-evenly;
    }
    .displayMenu{
        display: none;
        justify-content: space-between;
        flex-direction: column;
        position: absolute;
        background-color: #00BF63;
        width: 45%;
        height: 300px;
        right: 0;
        border-radius: 20px;
    }
    .menuButtonContainer{
        width: 72%;
        height: 29%;
        display: flex;
        justify-content: end;
        align-items: center;
    }
    .navPanelContainer{
        width: 100%;
        height: 71%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }
    #menuOpenButton{
        display: block;
    }
    #menuCloseButton{
        font-size: 25px;
    }
    main{
        width: 100%;
    }
    .songsContainer{
        width: 85%;
        display: flex;
        flex-direction: column;
        margin-bottom: 150px;
    }
    .songCardContainer{
        width: 100%;
    }
    footer{
        width: 100%;
        height: 150px;
        flex-direction: column;
    }
    .playAheadDataContainer{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    #playAheadSongCover{
        display: none;
    }
    #playAheadSongName{
        width: 100%;
        word-wrap: none;
    }
    .playAheadSongRunContainer{
        display: flex;
        justify-content: space-evenly;
        width: 100%;
    }
    #playAheadSongBar{
        width: 85%;
    }
    #playAheadSongCurrentTime{
        width: 10%;
        font-size: 12px;
    }
    .playAheadButtonContainer{
        display: flex;
        width: 100%;
    }
}