@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  color: #191919;
  font-family: 'Roboto', sans-serif;
}

main {
  background-image: url("../images/winter-background.webp");
  background-color: #FAFDFE;
  object-fit: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  position: relative;
  overflow: hidden;
  overflow-y: auto;
}

a {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  line-height: 15px;
  border-radius: 15px;
  border: none;
  height: 30px;
  min-width: 150px;
  display: flex;
  align-items: center;
  padding-left: 8px;
  cursor: pointer;
  text-decoration: none;
}

.music-links-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 12px;
}

.music-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  background-color: #000000;
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-size: 16px;
  font-weight: bold;
  margin: 5px; /* Adds space around each button */
  transition: background-color 0.3s ease;
}

.music-link:hover {
  background-color: #399802;
}

.music-link-icon {
  margin-right: 4px;
}

.body-container {
  margin: 0 auto;
  max-width: 90%;
  opacity: 0.9;
  border-radius: 6px;
  width: 400px;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.body-container h3 {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  color: #2D2D2D;
  margin: 18px 0 22px;
}

.logo {
  width: 172px;
}

input {
  outline: none;
}

iframe {
  border-radius: 12px;
}

.frame-container {
  width: 100%;
}

.toggle-container {
  width: 60px;
  margin: 20px auto 10px;
  overflow: auto;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #7FB7CB;
}

input:focus + .slider {
  box-shadow: 0 0 1px #7FB7CB;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

@media (min-width: 412px) {
  main, .body-container {
    display: flex;
    flex-direction: column;
  }
  iframe, .body-container {
    flex: 1;
  }
  .frame-container {
    flex: 0.9;
    display: contents;
  }
}

@media (min-width: 768px) {
  .body-container {
    max-width: 400px;
  }
  main {
    overflow-y: hidden;
  }
}

@media (min-width: 1024px) {
  .body-container {
    width: 560px;
  }
  .frame-container {
    padding-bottom: 0;
  }
  .body-container {
    background: #FFFFFF;
    box-shadow: 0 0 60px 60px #FFFFFF;
  }
}

.snowflake {
  --size: 1vw;
  width: var(--size);
  height: var(--size);
  background: white;
  border-radius: 50%;
  position: absolute;
  top: -5vh;
}

@keyframes snowfall {
  0% {
    transform: translate3d(var(--left-ini), 0, 0);
  }
  100% {
    transform: translate3d(var(--left-end), 110vh, 0);
  }
}
.snowflake:nth-child(1) {
  --size: 0.2vw;
  --left-ini: -2vw;
  --left-end: 0vw;
  left: 14vw;
  animation: snowfall 14s linear infinite;
  animation-delay: -7s;
}
.snowflake:nth-child(2) {
  --size: 0.4vw;
  --left-ini: 5vw;
  --left-end: 9vw;
  left: 19vw;
  animation: snowfall 13s linear infinite;
  animation-delay: -7s;
}
.snowflake:nth-child(3) {
  --size: 0.8vw;
  --left-ini: 4vw;
  --left-end: 1vw;
  left: 2vw;
  animation: snowfall 13s linear infinite;
  animation-delay: -2s;
}
.snowflake:nth-child(4) {
  --size: 0.2vw;
  --left-ini: 7vw;
  --left-end: -2vw;
  left: 68vw;
  animation: snowfall 11s linear infinite;
  animation-delay: -8s;
}
.snowflake:nth-child(5) {
  --size: 1vw;
  --left-ini: -4vw;
  --left-end: 0vw;
  left: 12vw;
  animation: snowfall 12s linear infinite;
  animation-delay: -8s;
}
.snowflake:nth-child(6) {
  --size: 0.8vw;
  --left-ini: 4vw;
  --left-end: 0vw;
  left: 15vw;
  animation: snowfall 11s linear infinite;
  animation-delay: -7s;
}
.snowflake:nth-child(7) {
  --size: 1vw;
  --left-ini: 6vw;
  --left-end: -8vw;
  left: 52vw;
  animation: snowfall 7s linear infinite;
  animation-delay: -1s;
}
.snowflake:nth-child(8) {
  --size: 0.2vw;
  --left-ini: 8vw;
  --left-end: 8vw;
  left: 31vw;
  animation: snowfall 14s linear infinite;
  animation-delay: -10s;
}
.snowflake:nth-child(9) {
  --size: 0.4vw;
  --left-ini: -6vw;
  --left-end: 6vw;
  left: 65vw;
  animation: snowfall 14s linear infinite;
  animation-delay: -5s;
}
.snowflake:nth-child(10) {
  --size: 0.4vw;
  --left-ini: 9vw;
  --left-end: 6vw;
  left: 100vw;
  animation: snowfall 12s linear infinite;
  animation-delay: -4s;
}
.snowflake:nth-child(11) {
  --size: 0.6vw;
  --left-ini: 5vw;
  --left-end: 6vw;
  left: 22vw;
  animation: snowfall 15s linear infinite;
  animation-delay: -10s;
}
.snowflake:nth-child(12) {
  --size: 0.4vw;
  --left-ini: -4vw;
  --left-end: 8vw;
  left: 93vw;
  animation: snowfall 12s linear infinite;
  animation-delay: -3s;
}
.snowflake:nth-child(13) {
  --size: 0.8vw;
  --left-ini: 1vw;
  --left-end: -7vw;
  left: 53vw;
  animation: snowfall 7s linear infinite;
  animation-delay: -6s;
}
.snowflake:nth-child(14) {
  --size: 0.4vw;
  --left-ini: 4vw;
  --left-end: 3vw;
  left: 29vw;
  animation: snowfall 10s linear infinite;
  animation-delay: -3s;
}
.snowflake:nth-child(15) {
  --size: 0.4vw;
  --left-ini: -1vw;
  --left-end: -9vw;
  left: 58vw;
  animation: snowfall 8s linear infinite;
  animation-delay: -1s;
}
.snowflake:nth-child(16) {
  --size: 1vw;
  --left-ini: -3vw;
  --left-end: -3vw;
  left: 20vw;
  animation: snowfall 8s linear infinite;
  animation-delay: -3s;
}
.snowflake:nth-child(17) {
  --size: 0.6vw;
  --left-ini: 6vw;
  --left-end: 9vw;
  left: 84vw;
  animation: snowfall 10s linear infinite;
  animation-delay: -10s;
}
.snowflake:nth-child(18) {
  --size: 0.2vw;
  --left-ini: 1vw;
  --left-end: 3vw;
  left: 19vw;
  animation: snowfall 15s linear infinite;
  animation-delay: -1s;
}
.snowflake:nth-child(19) {
  --size: 0.4vw;
  --left-ini: 2vw;
  --left-end: -4vw;
  left: 77vw;
  animation: snowfall 6s linear infinite;
  animation-delay: -9s;
}
.snowflake:nth-child(20) {
  --size: 0.8vw;
  --left-ini: -1vw;
  --left-end: -9vw;
  left: 97vw;
  animation: snowfall 9s linear infinite;
  animation-delay: -8s;
}
.snowflake:nth-child(21) {
  --size: 0.8vw;
  --left-ini: -6vw;
  --left-end: -1vw;
  left: 22vw;
  animation: snowfall 11s linear infinite;
  animation-delay: -1s;
}
.snowflake:nth-child(22) {
  --size: 0.4vw;
  --left-ini: -1vw;
  --left-end: 2vw;
  left: 85vw;
  animation: snowfall 13s linear infinite;
  animation-delay: -5s;
}
.snowflake:nth-child(23) {
  --size: 0.6vw;
  --left-ini: 0vw;
  --left-end: 6vw;
  left: 16vw;
  animation: snowfall 8s linear infinite;
  animation-delay: -3s;
}
.snowflake:nth-child(24) {
  --size: 0.6vw;
  --left-ini: 7vw;
  --left-end: 8vw;
  left: 10vw;
  animation: snowfall 13s linear infinite;
  animation-delay: -4s;
}
.snowflake:nth-child(25) {
  --size: 0.6vw;
  --left-ini: 7vw;
  --left-end: -3vw;
  left: 62vw;
  animation: snowfall 8s linear infinite;
  animation-delay: -2s;
}
.snowflake:nth-child(26) {
  --size: 0.6vw;
  --left-ini: -2vw;
  --left-end: 10vw;
  left: 65vw;
  animation: snowfall 12s linear infinite;
  animation-delay: -2s;
}
.snowflake:nth-child(27) {
  --size: 0.8vw;
  --left-ini: -4vw;
  --left-end: 10vw;
  left: 32vw;
  animation: snowfall 9s linear infinite;
  animation-delay: -3s;
}
.snowflake:nth-child(28) {
  --size: 0.2vw;
  --left-ini: -3vw;
  --left-end: -4vw;
  left: 22vw;
  animation: snowfall 9s linear infinite;
  animation-delay: -5s;
}
.snowflake:nth-child(29) {
  --size: 1vw;
  --left-ini: -7vw;
  --left-end: -5vw;
  left: 58vw;
  animation: snowfall 8s linear infinite;
  animation-delay: -2s;
}
.snowflake:nth-child(30) {
  --size: 1vw;
  --left-ini: 3vw;
  --left-end: 5vw;
  left: 36vw;
  animation: snowfall 12s linear infinite;
  animation-delay: -2s;
}
.snowflake:nth-child(31) {
  --size: 0.6vw;
  --left-ini: -7vw;
  --left-end: 2vw;
  left: 98vw;
  animation: snowfall 15s linear infinite;
  animation-delay: -7s;
}
.snowflake:nth-child(32) {
  --size: 0.2vw;
  --left-ini: 2vw;
  --left-end: 10vw;
  left: 60vw;
  animation: snowfall 15s linear infinite;
  animation-delay: -10s;
}
.snowflake:nth-child(33) {
  --size: 0.8vw;
  --left-ini: -3vw;
  --left-end: 3vw;
  left: 38vw;
  animation: snowfall 12s linear infinite;
  animation-delay: -5s;
}
.snowflake:nth-child(34) {
  --size: 0.8vw;
  --left-ini: 2vw;
  --left-end: -7vw;
  left: 66vw;
  animation: snowfall 8s linear infinite;
  animation-delay: -10s;
}
.snowflake:nth-child(35) {
  --size: 0.8vw;
  --left-ini: 6vw;
  --left-end: -2vw;
  left: 53vw;
  animation: snowfall 6s linear infinite;
  animation-delay: -2s;
}
.snowflake:nth-child(36) {
  --size: 1vw;
  --left-ini: -8vw;
  --left-end: 10vw;
  left: 78vw;
  animation: snowfall 13s linear infinite;
  animation-delay: -7s;
}
.snowflake:nth-child(37) {
  --size: 0.4vw;
  --left-ini: -7vw;
  --left-end: -8vw;
  left: 98vw;
  animation: snowfall 14s linear infinite;
  animation-delay: -9s;
}
.snowflake:nth-child(38) {
  --size: 0.4vw;
  --left-ini: 7vw;
  --left-end: -9vw;
  left: 83vw;
  animation: snowfall 13s linear infinite;
  animation-delay: -3s;
}
.snowflake:nth-child(39) {
  --size: 0.2vw;
  --left-ini: -1vw;
  --left-end: -1vw;
  left: 7vw;
  animation: snowfall 11s linear infinite;
  animation-delay: -3s;
}
.snowflake:nth-child(40) {
  --size: 1vw;
  --left-ini: 5vw;
  --left-end: -5vw;
  left: 57vw;
  animation: snowfall 7s linear infinite;
  animation-delay: -8s;
}
.snowflake:nth-child(41) {
  --size: 0.8vw;
  --left-ini: -4vw;
  --left-end: 0vw;
  left: 81vw;
  animation: snowfall 8s linear infinite;
  animation-delay: -3s;
}
.snowflake:nth-child(42) {
  --size: 0.8vw;
  --left-ini: 6vw;
  --left-end: -4vw;
  left: 48vw;
  animation: snowfall 13s linear infinite;
  animation-delay: -6s;
}
.snowflake:nth-child(43) {
  --size: 0.4vw;
  --left-ini: 10vw;
  --left-end: -3vw;
  left: 15vw;
  animation: snowfall 8s linear infinite;
  animation-delay: -2s;
}
.snowflake:nth-child(44) {
  --size: 0.8vw;
  --left-ini: -8vw;
  --left-end: -5vw;
  left: 17vw;
  animation: snowfall 6s linear infinite;
  animation-delay: -9s;
}
.snowflake:nth-child(45) {
  --size: 0.4vw;
  --left-ini: 2vw;
  --left-end: 2vw;
  left: 87vw;
  animation: snowfall 13s linear infinite;
  animation-delay: -3s;
}
.snowflake:nth-child(46) {
  --size: 0.4vw;
  --left-ini: -6vw;
  --left-end: -9vw;
  left: 92vw;
  animation: snowfall 15s linear infinite;
  animation-delay: -8s;
}
.snowflake:nth-child(47) {
  --size: 0.4vw;
  --left-ini: -2vw;
  --left-end: 4vw;
  left: 60vw;
  animation: snowfall 10s linear infinite;
  animation-delay: -8s;
}
.snowflake:nth-child(48) {
  --size: 0.6vw;
  --left-ini: -5vw;
  --left-end: 5vw;
  left: 51vw;
  animation: snowfall 6s linear infinite;
  animation-delay: -6s;
}
.snowflake:nth-child(49) {
  --size: 0.2vw;
  --left-ini: -6vw;
  --left-end: 6vw;
  left: 12vw;
  animation: snowfall 14s linear infinite;
  animation-delay: -9s;
}
.snowflake:nth-child(50) {
  --size: 1vw;
  --left-ini: -7vw;
  --left-end: 9vw;
  left: 35vw;
  animation: snowfall 8s linear infinite;
  animation-delay: -8s;
}
.snowflake:nth-child(6n) {
  filter: blur(1px);
}
