* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    color: #456cce;
}

/* background div */
.bgcontainer {
    background-image: url();
    height: 100vh;
    filter: blur(10px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* container */
.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}


/* about song */
.songDiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.trackImage {
    background-image: url();
    width: 200px;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin: 0px 20px 20px;
}

.trackName {
    font-size: 35px;
}

.trackArtist {
    font-size: 25px;
    margin: 13px 0;
}

/* about time */
.timeDiv {
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.currentDisplay,
.totalDisplay {
    font-size: 23px;
}

.totalTimeLength {
    width: 400px;
    height: 7px;
    background-color: #e2e2e2;
    margin: 0px 10px;
    border-radius: 5px;
}

.currentTime {
    width: 0px;
    height: 7px;
    background-color: #267bc5;
    border-radius: 5px;
}

/* about buttons */
.buttons {
    display: flex;
    align-items: center;
}

.preButton,
.playPause,
.nextButton {
    padding: 15px;
    transition: 0.5s;
}


.preButton:hover,
.playPause:hover,
.nextButton:hover {
    transform: scale(1.2);
}

i {
    cursor: pointer;
}



/* display */
.hidden {
    display: none;
}