* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  gap: 20px;
  padding: 10px;
  z-index: 1;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/img/bg.webp") no-repeat center / cover;
  z-index: -2;
}

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

.wrapper {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}

.title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.link {
  display: block;
  padding: 16px 20px;
  border-radius: 16px;
  color: #fff;
  margin: 20px auto 0 auto;
  text-align: center;
  max-width: 450px;
  width: 100%;
  background-color: #db7093;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 700;
  transform: scale(1);
  transition: transform .4s ease;

  &:hover {
    transform: scale(1.03);
  }
}
