@font-face {
  font-family: "MyCustomFont";
  src: url("https://oberoibirdcompendium.com/assets/font/glacial.otf") format("opentype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "MyCustomFont", sans-serif;
  background-color: black;
}

.container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.foto {
  height: 100vh;
  object-fit: cover;
  display: block;
  scroll-snap-align: start;
}

.slide {
  position: relative;
}

.song-button {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  background-color: #483c3273;
  color: white;
  cursor: pointer;
  font-family: "MyCustomFont", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.song-button:hover {
  text-decoration: underline;
}

.image-1 {
  position: absolute;
  top: 54.7%;
  right: 19%;
}

.image-2 {
  position: absolute;
  top: 50%;
  left: 20%;
}

.image-3 {
  position: absolute;
  top: 50%;
  left: 20%;
}

.image-4 {
  position: absolute;
  top: 54%;
  right: 19%;
}

.image-5 {
  position: absolute;
  top: 54%;
  right: 19.5%;
}

.image-6 {
  position: absolute;
  top: 53%;
  left: 31.5%;
}

.image-7 {
  position: absolute;
  top: 66%;
  left: 24%;
}

.image-8 {
  position: absolute;
  top: 79%;
  left: 18%;
}

.image-9 {
  position: absolute;
  top: 55.5%;
  left: 21%;
}

.image-10 {
  position: absolute;
  top: 82.5%;
  right: 19%;
}

.image-11 {
  position: absolute;
  top: 82.5%;
  right: 19.5%;
}

.image-12 {
  position: absolute;
  top: 93.5%;
  right: 20%;
}

.image-13 {
  position: absolute;
  top: 90.5%;
  left: 21%;
}

.image-14 {
  position: absolute;
  top: 90.5%;
  left: 21%;
}

.image-15 {
  position: absolute;
  top: 54%;
  left: 24%;
}

.image-16 {
  position: absolute;
  top: 87%;
  right: 21.5%;
}

.image-17 {
  position: absolute;
  top: 53%;
  left: 21%;
}

.image-18 {
  position: absolute;
  top: 67.2%;
  left: 19.3%;
}

.image-19 {
  position: absolute;
  top: 74%;
  right: 12.3%;
}

@media (max-width: 600px) {
  .foto {
    width: 100vw;
    height: max-content;
  }

  .song-button {
    padding: 3px 8px;
    border: none;
    border-radius: 20px;
    background-color: #483c3273;
    color: white;
    cursor: pointer;
    font-family: "MyCustomFont", sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 4px;
  }
}

@media (min-width: 601px) and (max-width: 1000px) {
  .foto {
    height: max-content;
    width: 100%;
  }

  .song-button {
    padding: 6px 12px;
    border: none;
    border-radius: 20px;
    background-color: #483c3273;
    color: white;
    cursor: pointer;
    font-family: "MyCustomFont", sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 8px;
  }
}

@media (min-width: 1001px) and (max-width: 1200px) {
  .foto {
    height: 100vh;
  }

  .song-button {
    padding: 6px 12px;
    border: none;
    border-radius: 20px;
    background-color: #483c3273;
    color: white;
    cursor: pointer;
    font-family: "MyCustomFont", sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 12px;
  }
}