* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.page-body {
  font-family: "Inter";
  overflow: hidden;
}

.page-main {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/images/bg-img.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-main::before {
  content: "";
  position: absolute;
  inset: 0;
  /* backdrop-filter: blur(8px); */
}
.content {
  position: relative;
  font-size: 20px;
  color: #000;
  max-width: 600px;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.093);
  backdrop-filter: blur(4px);
}
.content .text {
  margin-bottom: 20px;
}
.main-link-button {
  display: block;
  width: 300px;
  padding: 16px 0;
  border-radius: 12px;
  margin: 0 auto;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  text-align: center;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background-color: #000;
  transition: transform 0.3s ease-out;
}
.main-link-button:hover {
  transform: scale(1.04);
}
.footer-links {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 1000;
  font-family: "Work Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-block: 10px;
  color: #888;
  transform: translateX(-50%);
}
.footer-links a {
  color: currentColor;
  text-decoration: none;
  margin-block: 10px;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .page-main {
    align-items: flex-start;
  }
  .content {
    margin-top: 12%;
  }
}
