* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  position: relative;
  min-height: 100vh;
  background-image: url("/img/bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #c7a4f0;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.65;
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #000;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.overlay {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.5);
}

.content {
  position: relative;
  z-index: 2;
}

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

.sidebar a {
  color: #fff;
  font-size: 28px;
  text-decoration: none;
}

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

.link-wrapper {
  max-width: 500px;
  margin: 0 auto;
  padding: 24px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.link {
  display: block;
  background: #e80c0c;
  padding: 12px;
  border-radius: 12px;
  max-width: 500px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-inline: auto;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 24px;
  transition: transform 0.4s;
}

.link:hover {
  transform: scale(1.05);
}

.content h1 {
  font-weight: 500;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.content h3 {
  margin-bottom: 40px;
  font-size: 2rem;
  color: #e80c0c;
}

@media (max-width: 600px) {
  body {
    justify-content: flex-start;
    padding-top: 70px;
  }

  .sidebar {
    bottom: 10vh;
  }
}

.content h1,
.content h3 {
  background-color: #fff;
  border-radius: 16px;
  padding: 6px 20px;
}

.content h3 {
  max-width: fit-content;
  margin: 0 auto 40px auto;
}
