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

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

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

.content-title {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  font-size: 30px;
}

.content-subtitle {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.content-button {
  display: block;
  background-color: #d3d3d3;
  text-decoration: none;
  max-width: 450px;
  width: 100%;
  color: #000;
  padding: 16px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  border-radius: 16px;
  margin: 0 auto;
  transition: transform .4s ease, background-color .4s ease;
  transform: scale(1);

  &:hover {
    transform: scale(1.02);
    background-color: #808080;
  }
}

.content-links {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%);
  font-weight: 700;
  color: #fff;

  a {
    font-weight: 700;
    color: #fff;
    font-size: 32px;
    text-decoration: none;
  }
}
