* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.page {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-image: url("/img/bg-step.webp");
  background-position: center;
  background-size: cover;
  font-family: ReithSerif, Helvetica, Arial, freesans, sans-serif;
}

.page-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  backdrop-filter: blur(8px) brightness(0.8);
}

.modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  padding: 48px 20px 48px 20px;
  margin-bottom: 48px;
}
.content-text {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}
.content-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  padding: 16px 20px;
  background-color: #b70101;
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  text-decoration: none;
  transform: translateY(-4px);
  transition: all 0.6 linear;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.8);
}
.content-btn:hover {
  transform: translateY(0);
  box-shadow: none;
}
.page-footer {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  color: #000;
  padding: 6px 4px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.page-footer a {
  text-decoration: underline;
  color: #a52a2a;
}
.page-footer a:hover {
  text-decoration: none;
}
@media (max-width: 400px) {
  .content-btn {
    width: 100%;
  }
}
