* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
.page {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  background-image: url("/img/bg-st-1.webp");
  background-repeat: no-repeat;
  background-size: cover;
  font-family: Roboto, sans-serif;
}
.page-main {
  display: flex;
  align-items: start;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.page-modal {
  width: 100%;
  max-width: fit-content;
  padding: 50px 20px;
  margin-top: 10%;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}
.page-modal .text {
  font-size: 32px;
  font-weight: 600;
  color: #11152a;
  text-align: center;
}
.page-modal .tools {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
.page-modal .btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 100%;
  min-width: 250px;
  padding: 8px 16px;
  border-radius: 8px;
  background-color: #000;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}
.page-modal .btn-link:hover {
  background-color: #2d3366;
}
.page-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  padding: 16px;
  background-color: #000;
}
.page-footer nav {
  color: #fff;
  font-size: 20px;
}
.page-footer nav a {
  color: inherit;
  font-size: inherit;
  font-weight: 500;
  text-decoration: none;
}
.page-footer nav a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .page-modal .text {
    font-size: 28px;
  }
  .page-modal .btn-link {
    padding: 8px;
    font-size: 16px;
  }
}
