body {
  margin: 0px;
  padding: 0px;
}

.background {
    width: 100%;
    height: 100vh;
    background-color: black;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.playLIstContainer {
    margin-bottom: 100px;
}

.audio {
    margin-top: 30px;
}

.trackitem {
    color: #ffc107;
    font-size: 20px;
    border-bottom: 1px solid #6c757d;
    padding: 10px 0px;
    cursor: pointer;
    user-select: none;
}

.currenttimeanddelaytime{
    color: white;
    user-select: none;
}

.progressbar {
    width: 500px;
    height: 5px;
    background-color:darkorange;
    margin-bottom: 10px;
}

.progressline {
    width: 0px;
    height: 100%;
    background-color:blue ;
}


.control {
    color: white;
    margin: 20px;
    cursor: pointer;
}

.pause {
    display: none;
}