body {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  color: #333;
}


.responsive-image {
  max-width: 20%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.container {
  text-align: center;
  padding: 10px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  animation: fadeIn 2s ease-in-out;
}

p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  animation: slideIn 2s ease-in-out;
}

.game-btn {
  padding: 12px 25px;
  font-size: 1.2rem;
  color: white;
  background: #007BFF;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, background 0.3s;
}

.game-btn:hover {
  transform: scale(1.2);
  background: #0056b3;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  animation: fadeIn 3s ease-in-out;
}

.social-icon {
  font-size: 2rem;
  color: #333;
  text-decoration: none;
  transition: transform 0.3s, color 0.3s;
}

.social-icon:hover {
  transform: scale(1.3);
  color: #007BFF;
}

footer {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #555;
}

footer a {
  text-decoration: none;
  color: #007BFF;
}

footer a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
	opacity: 0;
  }
  to {
	opacity: 1;
  }
}

@keyframes slideIn {
  from {
	transform: translateY(20px);
	opacity: 0;
  }
  to {
	transform: translateY(0);
	opacity: 1;
  }
}