body {
  position: relative;
  box-sizing: border-box;
  height: 100vh;
  padding: 0;
  margin: 0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.text {
  max-width: 450px;
  font-size: 26px;
  color: #fff;
  text-align: center;
  font-weight: 700;
}

.link {
  background-color: #ff0000;
  padding: 16px 24px;
  max-width: 350px;
  width: 100%;
  border-radius: 16px;
  color: #000;
  text-decoration: none;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  transform: scale(1);
  transition: transform .4s ease;

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

@media (max-width: 500px) {
  .link {
    max-width: 300px;
  }
}

body::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: url("/img/bg.png") no-repeat center / cover;
  filter: blur(14px);
}