@font-face {
    font-family: Helvetica;
    src: url(/fonts/Helvetica-Bold.ttf);
}

*{
    margin: 0;
    padding: 0;
    color: white;
    box-sizing: border-box;
}
.music-player{
    font-size: 36px;
    width: 900px;
    height: 498px;
    background: #3f3131c6;
    padding: 25px 35px;
    text-align: left;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.375);
}

.music-cols{
    display: grid;
    width: 100%;
    grid-template-columns: 25% auto;
    gap: 25px;
  }

.lightermusicbox {
    height: 435px;
    padding: 25px 35px;
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    color: white;
    background-color: #554946e7;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.375);
}

.controls{
    display: flex;
    gap: 25px;
    padding-top: 15px;
    margin-bottom: 30px;
}

.controls div{
    width: 50px;
    display: inline-flex;
    cursor: url('../img/cursor2.png'), auto;
}

.controls img:hover {
    transform: translate(0px, -3px);
    transition: 0.25s ease;
    filter: brightness(-1.125);
}

.controls div:nth-child(3){
    width: 100%;
}

.more-controls{
    display: flex;
    gap: 15px;
    padding-top: 15px;
    margin-bottom: 30px;
}

.more-controls div{
    width: 50px;
    display: inline-flex;
    cursor: url('../img/cursor2.png'), auto;
}

.more-controls img:hover {
    transform: translate(0px, -3px);
    transition: 0.25s ease;
    filter: brightness(-1.125);
    cursor: url('../img/cursor2.png'), auto;
}

.more-controls div:nth-child(3){
    width: 100%;
}

.song-img{
    opacity: 1;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}

.song-img{
    width: 200px;
    height: 200px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.375);
    border:1px solid rgb(255, 255, 255);
}

.duration-time,
.current-time{
    font-family: VT323;
}
#volume,
#progress{
    -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 8px;
  background: rgb(255, 255, 255);
  opacity: 1;
  -webkit-transition: .2s;
  transition: opacity .2s;
    cursor: url('../img/cursor2.png'), auto;
}

#volume::-webkit-slider-thumb,
#progress::-webkit-slider-thumb{
    -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: rgb(104, 40, 40);
  cursor: url('../img/cursor2.png'), auto;
  border-radius: 50%;
}

.music-container{
    width: 215px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}