@font-face {
  font-family: Inter;
  src: url("/fonts/Inter_18pt-Bold.ttf");
  font-weight: 700;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.page {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
}
.page-bg {
  position: fixed;
  z-index: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  height: 428px;
  width: 100%;
  background-image: url("/img/bg.webp");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
}
.page-main {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: start;
  justify-content: center;
  height: 100%;
  background-color: rgba(248, 248, 248, 0.78);
}
.container {
  width: 100%;
  max-width: 767px;
  margin-top: 12%;
}
.container .text {
  margin-bottom: 50px;
  color: #550f3c;
  text-align: center;
  font-family: Inter;
  font-size: 40px;
  font-weight: 700;
}
.container .link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 198px;
  height: 69px;
  padding: 23px 43px;
  margin: 0 auto;
  border-radius: 7px;
  background: #550f3c;
  color: #f8f8f8;
  text-align: center;
  font-family: "Times New Roman";
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
}
.page-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 133px;
  background: #550f3c;
  color: #f8f8f8;
  text-align: center;
  font-family: "Times New Roman";
  font-size: 18px;
  font-weight: 400;
}
.page-footer a {
  color: inherit;
  font-family: inherit;
  text-decoration-line: underline;
  text-underline-position: from-font;
}
.page-footer a:hover {
  text-decoration-line: none;
}
@media (max-width: 800px) {
  .container {
    max-width: 598px;
    /* margin-top: 25%; */
  }
  .page-bg {
    bottom: 110px;
  }
}
@media (max-width: 600px) {
  .container {
    max-width: unset;
    padding: 25px;
    margin-top: 52px;
  }
  .container .text {
    font-size: 30px;
  }
  .page-bg {
    height: 183px;
  }
}
