* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Comic Sans MS", cursive, sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #ffcc70, #ff8177);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.container {
  text-align: center;
}

#title {
  font-size: 3rem;
  color: #2b2b2b;
  animation: bounce 2s infinite;
}

.card {
  margin: 30px auto;
  padding: 25px;
  background: white;
  border-radius: 20px;
  width: 400px;
  box-shadow: 0 15px 0 #ff6f61;
  animation: wiggle 3s infinite;
}

#subtitle {
  font-size: 1.5rem;
  color: #ff4081;
}

button {
  padding: 15px 30px;
  font-size: 1.2rem;
  border: none;
  border-radius: 50px;
  background: #2b2b2b;
  color: white;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

button:hover {
  transform: scale(1.1) rotate(-2deg);
  background: #000;
}

/* Animations */

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes wiggle {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(2deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(-2deg); }
  100% { transform: rotate(0deg); }
}
