.menu {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 550px;
  justify-content: center;
  position: absolute;
  left: 125px;
  opacity: 1;
  z-index: 1;
  user-select: none;
}

.title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.soderstrom {
  object-fit: cover;
  width: 70%;
  margin-bottom: 35px;
}

.theo {
  object-fit: cover;
  width: 100%;
  margin-bottom: 60px;
}

/*...*/
/*area-divide*/
/*...*/

.bottom-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 85px;
}

.line {
  object-fit: cover;
  width: 100%;
  opacity: .6;
}

.menu-a {
  font-family: ITC-serif-gothic, sans-serif;
  height: 40px;
  font-size: 40px;
  background-color: transparent;
  border: none;
  color: rgb(239, 127, 64);
  cursor: pointer;
  text-decoration: none;
  user-select: none;

  transition: color .1s;
}

.menu-a:hover {
  color: rgb(250, 220, 196);
}

.buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.button-holder {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.arrow {
  margin-top: 8px;
  width: 42px;
  height: 25px;
  opacity: 0;
}



.songplayer-div {
  user-select: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

#current-song {
  font-size: 30px;
  font-family: ITC-serif-gothic, sans-serif;
  margin: 0;
  margin-top: 18px;
  margin-left: 15px;
  color: rgb(239, 127, 64);
}



.controls {
  margin-top: 0px;
  display: flex;
  flex-direction: row;
  margin-left: 20px;
}

.song-arrow {
  color: rgb(239, 127, 64);
  font-size: 45px;
  margin: 0;
  margin-right: 6px;
}

#pause-button {
  color: rgb(239, 127, 64);
  font-size: 50px;
  margin: 0;
  margin-right: 6px;
}

#pause-button, .song-arrow {
  transition: 0.2s;
}

#pause-button:hover, .song-arrow:hover {
  color: rgb(250, 220, 196);
  cursor: pointer;
  transform: scale(1.1);
}

#volume-slider {
  z-index: 20;
  -webkit-appearance: none;
  appearance: none;
  background: rgb(239, 127, 64);
  height: 10px;
  vertical-align: middle;
  border-radius: 3px;
  margin-top: 7px;
  cursor: pointer;
  transition: 0.2s;
}

#volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 21px;
  height: 21px;
  background: rgb(229, 188, 165);
  border: 3.5px solid rgb(239, 127, 64);
  border-radius: 50%;
  transition: 0.2s;
}

#volume-slider:hover {
  background: rgb(233, 143, 91);
  transform: scale(1.04);
}

#volume-slider::-webkit-slider-thumb:hover {
  border-color: rgb(229, 188, 165);
  transform: scale(1.2);
}


#current-song span {
  display: inline-block;
  transition: color 0.3s ease, transform 0.2s ease;
  cursor: default;
}

#current-song span:hover {
  color: rgb(250, 220, 196);
  transform: scale(1.3);
}



/*...*/
/*phone*/
/*...*/


@media (width <= 1000px) {
  


  .menu {
    width: 750px;
    
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .menu-a {
    height: 100px;
    font-size: 75px;
  }
 
}