body {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #f4f4f9, #e8eaf6);
  color: #333;
  text-align: center;
}

header {
  background: linear-gradient(135deg, #595959, #3a3a3a);
  color: white;
  padding: 20px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

header h1 {
  margin: 0;
  font-size: 2.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1.5s ease-in-out;
}

header h2 {
  margin-top: 10px;
  font-size: 1.3rem;
  font-weight: 300;
  color: #dcdcdc;
  animation: slideIn 2s ease-in-out;
}

main {
  margin: 40px auto;
  max-width: 800px;
  padding: 0 20px;
}

main h3 {
  font-size: 2rem;
  color: #444;
  margin-bottom: 25px;
  text-transform: capitalize;
  animation: fadeIn 1.2s ease-in-out;
}

.links {
  margin-top: 30px;
}

.links p {
  margin: 35px 0;
  font-style: italic;
  color: #666;
}

.links a {
  text-decoration: none;
  font-size: 1.5rem;
  color: #333;
  border: 2px solid #333;
  padding: 12px 25px;
  border-radius: 50px;
  background: linear-gradient(135deg, #fff, #e0e0e0);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.links a:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #333, #555);
  color: white;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.links a:focus {
  outline: 3px dashed #ff6f61;
}

footer {
  background: linear-gradient(135deg, #3a3a3a, #595959);
  color: white;
  position: fixed;
  padding: 15px;
  bottom: 0;
  width: 100%;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
}

footer p, footer ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

footer ul {
  margin-top: 10px;
  padding: 0;
}

footer ul li {
  display: inline;
  margin: 0 15px;
}

footer ul li a {
  color: #dcdcdc;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: #ff6f61;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2.2rem;
  }

  header h2 {
    font-size: 1.1rem;
  }

  main h3 {
    font-size: 1.6rem;
  }

  .links a {
    font-size: 1.3rem;
    padding: 10px 20px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
