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

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

.links {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, -10px);
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.wrapper {
  width: 100%;
}

.title {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

.link {
  display: block;
  max-width: 400px;
  font-size: 24px;
  font-weight: 700;
  width: 100%;
  margin: 0 auto;
  padding: 16px 20px;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  color: #333;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: slideIn 1s forwards, bounce 2s 2s ease infinite;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.link:hover {
  background-color: #3498db;
  color: #fff;
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

