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

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

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

.content-title {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.content-wrapper {
  width: 100%;
}

.content-link {
  background-color: #fff;
  color: #000;
  display: block;
  padding: 16px 20px;
  border-radius: 16px;
  text-align: center;
  max-width: 450px;
  margin: 0 auto;
  width: 100%;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  border: none;
  transition: background-color .4s ease;

  &:hover {
    background-color: #d3d3d3;
  }
}