* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Regular";
}

@font-face {
  font-family: "Regular";
  src: url(../fonts/Euclid-Circular-A-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Medium";
  src: url(../fonts/Euclid-Circular-A-Medium.ttf);
  font-weight: 500;
}
body {
  background: url(../img/bg.jpg) center center/cover no-repeat;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 10px;
  padding-bottom: 28px;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
}
.container .main {
  width: 100%;
}
.container h1 {
  color: #fff;
  font-weight: 500;
  font-size: 44px;
  line-height: 48px;
  margin: 0;
}
.container h1 span {
  color: #71FDA8;
}
.container p {
  color: #fff;
  opacity: 0.48;
  font-size: 20px;
  line-height: 24px;
  margin: 25px 0;
}
.container a {
  width: 95%;
  color: #fff;
  font-size: 18px;
  padding: 21px;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid #71FDA8;
  background-color: rgba(113, 253, 168, 0.04);
  -webkit-backdrop-filter: blur(19px);
          backdrop-filter: blur(19px);
  text-decoration: none;
}

@media (max-height: 725px) {
  .container h1 {
    font-size: 40px;
    line-height: 44px;
  }
  .container p {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-height: 710px) {
  .container h1 {
    font-size: 36px;
    line-height: 40px;
  }
  .container p {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-height: 660px) {
  .container h1 {
    font-size: 33px;
    line-height: 37px;
  }
  .container p {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-height: 640px) {
  .container h1 {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-height: 590px) {
  .container h1 {
    font-size: 28px;
    line-height: 32px;
  }
  .container .main {
    width: 55vh;
  }
  .container p {
    margin: 15px 0;
  }
}/*# sourceMappingURL=style.css.map */