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

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("/img/bg.png") no-repeat center / cover;
  height: 100vh;
  padding: 10px;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.content-text {
  color: #000;
  font-size: 26px;
  font-weight: 700;
}

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

.content-link:hover {
  background-color: #808080;
  transform: scale(1.01);
}

.links {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
}

.links a {
  color: #000;
  text-decoration: none;
  font-weight: 700;
}