@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Regular.woff2") format("woff2"),
    url("/fonts/Inter-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Medium.woff2") format("woff2"),
    url("/fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Bold.woff2") format("woff2"),
    url("/fonts/Inter-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
html,
body,
div,
h1,
h3,
p,
a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
body {
  line-height: 1;
  -ms-scroll-chaining: inherit;
  overscroll-behavior: inherit;
  font-family: "Inter";
  line-height: 1.3;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
.main__background {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  background-image: url("/img/bg-img.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 50px 10px 10px 10px;
  gap: 20px;
}

.logo {
  max-width: 60px;
  width: 100%;
  margin-bottom: 30px;
}
.text-upper {
  text-transform: uppercase;
}
.text-shodow {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.main__background h1 {
  font-weight: 700;
  color: #fff;
  text-align: center;
  font-size: 24px;
  max-width: 800px;
  margin-bottom: 30px;
}

.main__background h3 {
  font-weight: 700;
  color: #52bbb8;
  text-align: center;
  font-size: 20px;
  max-width: 900px;
  margin-bottom: 30px;
}

.main__background p {
  font-weight: 700;
  color: #fff;
  text-align: center;
  font-size: 20px;
  max-width: 820px;
  font-weight: 700;
  margin-bottom: 20px;
}

.box {
  background-color: #fff;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
}

.box p {
  color: #000;
  margin-bottom: 20px;
}

.box .link-btn {
  background-color: #52bbb8;
  display: block;
  text-align: center;
  padding: 16px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  max-width: 400px;
  width: 100%;
  text-align: center;
}

@media (max-width: 500px) {
  .main__background {
    padding: 20px 10px 10px 10px;
  }

  .logo {
    max-width: 40px;
    margin-bottom: 10px;
  }

  .main__background h1 {
    font-size: 26px;
  }

  .main__background h3 {
    font-size: 20px;
  }

  .main__background p {
    font-size: 14px;
    max-width: 768px;
  }

  .box p {
    margin-bottom: 10px;
  }

  .box a {
    font-size: 16px;
  }
}
