html, body {
    width: 100vw;
    height: 100vh;
    background-color: whitesmoke;
    overflow-x: hidden; 
}

.playlist {
    margin: 0% 5%;
}

.wavesurf_track {
    margin: 0% 7%;
    height: 200%;
}

.title {
    background-color: rgb(134, 134, 255);
    text-align: center;
    font-size: 2rem;
}

.navbar-custom {
    background-color:rgb(125, 125, 255);
}

.title-text {
    text-align: right;
    margin-right: 1%;
    font-size: 2.2rem;
    font-weight: bold;
    font-family: Impact, "Arial Black", sans-serif;
}

.time_left {
    float: left;
    font-weight: bold;
    font-size: 1rem;
}

.time_right {
    float: right;
    font-weight: bold;
    font-size: 1rem;
}

.listen_track {
    margin: 0% 10%;
    font-size: 1.3rem;
    max-width: 100%;
}

.track_text {
    font-weight: bold;
}

.track_descrip {
    margin-left: 1%;
    font-size: .9rem;
}

.buttons_bar {
    text-align: center;
}

.button {
    height: 100px;
    margin: 0% 2%;
}

.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid rgb(134, 134, 255);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin: auto;
}

.load {
    font-size: 4rem;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    text-align: center;
    color:black;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}