@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("../fonts/MingCute.css");
* {
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  border: none;
  line-height: 1;
  text-decoration: none;
}
body {
  background: #21262b;
  color: #fff;
  width: 100%;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 0;
}
#bg_img {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(https://tvsindicatorural.cwbox.net/wp-content/uploads/2025/02/a_modern_and_well-lit_waiting_room_with_comfortable_chairs_arranged_in_rows_all_facing_the_tv_scree_g0nbwiiztvu00xgqbype_0.png);
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -999;
  filter: blur(10px);
  opacity: 0.1;
}
p {
  text-wrap: balance;
  line-height: 1.2;
}
section {
  width: 100%;
  max-width: 800px;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  flex-direction: column;
  gap: 50px;
}
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 50px;
  .logo {
    width: 300px;
  }
}

#downloads {
  display: flex;
  gap: 20px;
  a {
    background: linear-gradient(217deg, #c0ee3f 0%, #cdec76 100%);
    color: #21262b;
    width: 250px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 0 #cdec7600;
    transition: 0.3s box-shadow ease;
    &:hover,
    &:focus {
      background: linear-gradient(90deg, #c0ee3f 0%, #cdec76 100%);
      box-shadow: 0 20px 50px #cdec7650;
      border: 3px solid #fff;
    }

    img {
      height: 32px;
    }
    [class*="mgc_"] {
      font-size: 21px;
    }
  }
}

.devices {
  max-height: 500px;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}

@keyframes rotateccw {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes spin {
  0%,
  100% {
    box-shadow: 0.2em 0px 0 0px currentcolor;
  }
  12% {
    box-shadow: 0.2em 0.2em 0 0 currentcolor;
  }
  25% {
    box-shadow: 0 0.2em 0 0px currentcolor;
  }
  37% {
    box-shadow: -0.2em 0.2em 0 0 currentcolor;
  }
  50% {
    box-shadow: -0.2em 0 0 0 currentcolor;
  }
  62% {
    box-shadow: -0.2em -0.2em 0 0 currentcolor;
  }
  75% {
    box-shadow: 0px -0.2em 0 0 currentcolor;
  }
  87% {
    box-shadow: 0.2em -0.2em 0 0 currentcolor;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    margin-top: -100px;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
    margin-top: 0;
  }
  to {
    opacity: 0;
    margin-top: -100px;
  }
}

.fadeOut {
  animation: fadeOutUp 0.5s ease forwards !important;
}

@media (width <= 800px) {
  body {
    display: block;
  }
  body,
  section {
    align-items: inherit;
    justify-content: inherit;
  }
  section {
    gap: 50px;
    padding: 20px;
    .logo {
      max-width: 200px;
    }
  }
  #downloads {
    flex-direction: column;
    align-items: center;
  }
}

@media (min-height: 100svh) {
  body {
    justify-content: flex-start;
    overflow-y: auto;
    padding: 50px;
  }
  section {
    justify-content: flex-start;
    height: auto;
  }
}

.clear {
  clear: both;
}
