@font-face {
  font-family: "Geist";
  src: url("https://pham.codes/d/GeistMonoVF.woff2") format("woff2");
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

body {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Geist";
  background-image: url("https://wallpapers.com/images/featured/paper-texture-background-zlvqcgwohwvd642j.jpg");
  background-size: cover;
  background-attachment: scroll;
}

.container {
  padding: 20px;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  align-content: center;
  gap: 100px;
  flex: 1;
  background-image: url("img/textured-paper.png");
}

.music-container {
  height: 500px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;

  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: rgb(98, 97, 97);
  border-radius: 20px;
  border: 3px solid black;
  box-shadow: rgba(0, 0, 0, 0.4) -5px 5px, rgba(0, 0, 0, 0.2) -10px 10px,
    rgba(0, 0, 0, 0.1) -15px 15px;
}

.description-container {
  height: 500px;
  max-width: 500px;
  min-width: 250px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  border: 3px solid black;

  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.4) -5px 5px, rgba(0, 0, 0, 0.2) -10px 10px,
    rgba(0, 0, 0, 0.1) -15px 15px;
  background-color: rgb(98, 97, 97);
  color: rgb(205, 205, 205);
}

.siska-container {
  background-color: rgb(49, 49, 49);
  border-radius: 20px;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset,
    rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px,
    rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px,
    rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px,
    rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.img-container1 img {
  height: 100px;
  width: auto;
  border-radius: 5px;
}

.title {
  font-size: 1.5rem;
  font-weight: bolder;
  color: rgb(205, 205, 205);
  padding: 10px;
}

.box-timer {
  color: rgb(205, 205, 205);
  font-size: 2rem;
  font-weight: bolder;
  font-family: "Dekko font";
}

.box-description {
  font-size: 1.3rem;
}

.img-container img {
  width: 300px;
  height: auto;
  border-radius: 5px;
}

.progress-container {
  width: 100%;
  margin: 20px 0;
  background-color: rgb(0, 0, 0);
  cursor: pointer;
}

.progress {
  height: 4px;
  background: rgb(205, 205, 205);
}

.navigation {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  align-content: center;
  padding: 10px;
}

.action-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: rgb(205, 205, 205);
  font-size: 2rem;
}

.link-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  padding: 50px;
}

.btn {
  padding: 20px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.nav-image {
  height: 30px;
}

@media (min-width: 1628px) {
  body {
    height: 100vh;
  }
}

.animate {
  animation-duration: 0.75s;
  animation-delay: 0.5s;
  animation-name: animate-fade;
  animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
  animation-fill-mode: backwards;
}

/* Glow In */
.animate.glow {
  animation-name: animate-glow;
  animation-timing-function: ease;
}

@keyframes animate-glow {
  0% {
    opacity: 0;
    filter: brightness(3) saturate(3);
    transform: scale(0.8, 0.8);
  }
  100% {
    opacity: 1;
    filter: brightness(1) saturate(1);
    transform: scale(1, 1);
  }
}

.delay-1 {
  animation-delay: 0.5s;
}
.delay-2 {
  animation-delay: 0.75s;
}
.delay-4 {
  animation-delay: 1.2s;
}
.delay-5 {
  animation-delay: 1.35s;
}
.delay-6 {
  animation-delay: 1.5s;
}
.delay-7 {
  animation-delay: 1.65s;
}
.delay-8 {
  animation-delay: 1.8s;
}
.delay-9 {
  animation-delay: 1.95s;
}
