html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.main {
  z-index: 1;
  position: relative;
  padding: 0 20px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.main-text {
  padding-top: 100px;
  width: 100%;
  z-index: 1;
  text-align: center;
}

.sub {
  text-align: center;
  display: block;
  border-radius: 16px;
  margin: 0 auto 100px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.85);
  max-width: 300px;
  color: #db136c;
  font-size: 1.75rem;
  font-weight: 700;
}

h3 {
  font-family: "Arial";
  font-size: 2rem;
  margin-bottom: 20px;
  color: #000;
  font-weight: 700;
}

.main::before {
  z-index: 0;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.6)
    ),
    url("/img/bg.webp");
  background-size: cover;
  background-position: center;
}

.link-wrapper {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 10px;
  margin: auto;
  max-width: 400px;
  width: 100%;
  color: #db136c;
  display: flex;
  justify-content: center;
  max-height: 90px;

  a {
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: #db136c;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.4s ease;

    &:hover {
      background-color: #770036;
    }
  }
}

.sidebar {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  color: #000;
  z-index: 99;
  white-space: nowrap;
  padding: 10px;
}

.sidebar a {
  color: #000;
  font-size: 18px;
}

.sidebar a:hover {
  text-decoration: underline;
}
