body {
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0;
  background: center/cover, rgba(0, 0, 0, 0.5);

  min-width: 480px;
  min-height: 100vh;
  font-family: 'Arial', sans-serif;
  background-blend-mode: multiply;
  transition: background-image 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
}

/* Header */

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 30vh;
  /* min-height: 220px; */
}

/* Main */

.main {
  position: relative;
  text-align: center;
  justify-content: center;
  height: 33%;
  margin-top: 20px;
}

.time {
  min-height: 124px;
  margin-bottom: 10px;
  font-family: 'Arial-MT';
  font-size: 120px;
  letter-spacing: -4px;
  color: #fff;
  font-weight: 700;
}

.date {
  min-height: 28px;
  font-size: 35px;
  margin-bottom: 20px;
  color: #fff;
}

.greeting-block {
  display: flex;
  text-align: center;
}

.greeting-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: stretch;
  align-items: center;
  min-height: 48px;
  width: 100vw;
  font-size: 40px;
}

.greeting {
  flex: 1;
  padding: 10px;
  text-align: right;
  color: #fff;
}

.name {
  flex: 1;
  max-width: 50%;
  padding: 10px;
  font-size: 40px;
  text-align: left;
  color: #fff;
  background-color: transparent;
  border: 0;
  outline: 0;
}

.name::placeholder {
  color: #fff;
  opacity: .6;
}

.background-image-arrow {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.background-image-arrow-left {
  left: 30px;
}

.background-image-arrow-right {
  right: 60px;
}

.background-image-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-top: 4px solid white;
  border-right: 4px solid white;
  transform: rotate(45deg);
}

.background-image-arrow-left::before {
  transform: rotate(225deg);
}

.header {
  margin: 0 auto;
}



.city {
  width: 200px;
  padding: 10px 0;
  margin: 20px 0 20px 0;
  border-bottom: 1px solid #ccc;
  color: #fff;
  font-size: 25px;
}


.temperature {
  font-size: 40px;
  margin-bottom: 20px;
}

.description-container {
  font-size: 16px;

}

.weather-description {
  width: 300px;
  margin: 0 0 0 15px;
  font-size: 20px;
  padding: 12px 0;
  color: #ffffff;
  background-color: transparent;
  border-radius: 5px;
}

.weather-icon {
  font-size: 50px;
  color: #fff;
}

.weather-icon:hover {
  animation: shake 1.5s;
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }

  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }

  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }

  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }

  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }

  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
}

.temperature {
  color: #fff;
  font-size: 20px;
}

.weather {
  color: #fff;
  margin-right: 50px;
}

.wind-speed {
  font-size: 20px;
  margin-top: 10px;
}

.humidity {
  font-size: 20px;
  margin-top: 10px;
}

.quote {
  min-height: 32px;
  color: #fff;
}

.change-quote {
  margin-bottom: 30px;
  background-image: url("../assets/svg/reload.svg");
}

.author {
  min-height: 20px;
  color: #fff;
}


.footer {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 30vh;
  min-height: 160px;
  text-align: center;
}

.player-icon,
.slider-icon,
.change-quote {
  width: 32px;
  height: 32px;
  background-size: 32px 32px;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: 0;
  outline: 0;
  opacity: .8;
  cursor: pointer;
  transition: .3s;
}

/* PLAYER */

.player {
  margin: 30px 50px;
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.play-list {
  text-align: left;
  padding: 0;
}

.play-item {
  position: relative;
  padding: 5px;
  padding-left: 20px;
  padding-right: 20px;
  list-style: none;
  opacity: .8;
  cursor: pointer;
  transition: .3s;
  color: #fff;
  display: flex;
  justify-content: space-between;
}

.play-item:hover {
  opacity: 1;
}

.play-item::before {
  content: "\2713";  
  position: absolute;
  left: 0;
  top: 2px;
  font-weight: 900;
}

.current::before {
  color: #0077FF;
  font-weight: bold;
}

.player-icon,
.slider-icon,
.change-quote,
.volume-icon {
  width: 32px;
  height: 32px;
  background-size: 32px 32px;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: 0;
  outline: 0;
  opacity: .8;
  cursor: pointer;
  transition: .3s;  
}

.player-icon:hover,
.slider-icon:hover,
.change-quote:hover,
.progress-bar:hover {
  opacity: 1;
}

.player-icon:active,
.slider-icon:active,
.change-quote:active {
  border: 0;
  outline: 0;  
  transform: scale(1.1);
}

.play {
  width: 40px;
  height: 40px;
  background-size: 40px 40px;
  background-image: url("../assets/svg/play.svg");
  margin-right: 10px;
}

.pause {
  background-image: url("../assets/svg/pause.svg");
}

.play-prev {
  background-image: url("../assets/svg/play-prev.svg");
  margin-right: 10px;
}

.play-next {
  background-image: url("../assets/svg/play-next.svg");
  margin-right: 10px;
}

.volume-toggle {
  background-image: url("../assets/svg/sound_on.svg");
  margin-right: 10px;
}

.muted {
  background-image: url("../assets/svg/sound_off.svg");
}

.play-item.current {
  border-bottom: 1px solid #0077FF;
  border-radius: 3px;
}




.volume-slider {
  cursor: pointer;
  appearance: none;
  background-color: rgba(255, 255, 255, 0.333);
  height: 15px;
  border-radius: 6px;
  width: 100px;
  transition: all 0.3s ease;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.progress-bar-container {
  width: 100%;
  height: 7px;
  cursor: pointer;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.303);
  transition: all 0.3s ease;
}

.progress-bar {
  height: 100%;
  background-color: #fff;
  width: 0%;
  border-radius: 3px;
  outline: 0;
  opacity: .8;
  cursor: pointer;
  transition: all 0.3s ease;
  
}

.track-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
  color: #fff;
}

.track-name {
  font-weight: bold;
}

.time-info {
  font-size: 14px;
}

.small-player-icon {
  background-image: url("../assets/svg/play.svg");
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: 0;
  outline: 0;
  opacity: .8;
  cursor: pointer;
  transition: .3s;  
  z-index: 9999;
}

.small-player-pause {
  background-image: url("../assets/svg/pause.svg");
}

