body {
  font-family: "Roboto", sans-serif;
  background-image: url(../img/background.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  margin: 0;
}
body main {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
body main .modal {
  width: 45%;
  background: #ffffff;
  border-radius: 15px;
  padding: 2%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body main .modal .logo-container {
  margin: 0;
  width: 75px;
  height: 75px;
  margin-bottom: 2%;
}
body main .modal .logo-container img {
  width: 100%;
}
body main .modal h1 {
  margin: 0;
  font-size: 2.5vw;
  color: black;
}
body main .modal h2 {
  font-size: 1.4vw;
  text-align: center;
  font-weight: 400;
}
body main .modal a {
  margin-top: 2.5%;
  display: inline-block;
  border-radius: 10px;
  padding: 2.5%;
  background: #8ecf38;
  color: white;
  text-decoration: none;
  font-size: 1.4vw;
  transition: 0.5s;
}
body main .modal a:hover {
  background: #292929;
  color: #ffffff;
}

@media screen and (max-width: 850px) {
  body {
    background-image: url("../img/background_tbl.webp");
  }
  body main .modal {
    width: 80%;
    border-radius: 15px;
    margin: 0 10%;
    padding: 5%;
  }
  body main .modal .logo-container {
    width: 75px;
    height: 75px;
  }
  body main .modal .logo-container img {
    width: 100%;
  }
  body main .modal h1 {
    font-size: 2.1vw;
  }
  body main .modal h2 {
    font-size: 2.1vw;
  }
  body main .modal a {
    margin-top: 2.5%;
    border-radius: 9px;
    padding: 2.5%;
    font-size: 2.1vw;
  }
}
@media screen and (max-width: 500px) {
  body {
    background-image: url("../img/background_mobile.webp");
  }
  body main .modal {
    width: 90%;
    border-radius: 15px;
    margin: 0 5%;
    padding: 5%;
  }
  body main .modal .logo-container {
    width: 60px;
    height: 60px;
  }
  body main .modal .logo-container img {
    width: 100%;
  }
  body main .modal h1 {
    font-size: 2.5vw;
  }
  body main .modal h2 {
    font-size: 5vw;
    font-weight: 400;
  }
  body main .modal a {
    margin-top: 2.5%;
    border-radius: 9px;
    padding: 3.5%;
    font-size: 5vw;
    font-weight: 400;
  }
}/*# sourceMappingURL=style.css.map */