* {
  padding: 0;
  margin: 0;
}

body {
  background-image: url("/img/bg.webp");
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #09608d;
  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";
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: -1;
}

.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: #000;
  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;
}

.link {
  display: block;
  background: #e80c0c;
  padding: 12px;
  border-radius: 5px;
  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;
  transform: scale(1);
  transition: transform 0.4s ease;
}

.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;
  }
}
