body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f2f2f2;
  color: #333;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  text-align: center;
}

header {
  margin-bottom: 2rem;
}

h1 {
  font-size: 3rem;
  color: #007acc;
}

.subtitle {
  font-size: 1.2rem;
  color: #555;
}

.about {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about strong {
  color: red;
}

footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #777;
}

/* New Styles */
.fun-message {
  font-size: 1.5rem;
  color: #ff6347; /* Tomato color */
  margin-top: 10px;
  animation: bounce 1s infinite;
}

a {
  color: #007acc;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

a:hover {
  color: #005999; /* Darker shade on hover */
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
