body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  margin: 0;
  padding: 0;
}

header {
  background-color: #007bff;
  color: white;
  padding: 10px 0;
  text-align: center;
  animation: colorChange 3s infinite linear;
}

nav {
  background-color: #333;
  color: white;
  padding: 10px 0;
  text-align: center;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
}

nav a:hover {
  background-color: #555;
}

section {
  padding: 20px;
  text-align: center;
}

footer {
  background-color: #333;
  color: white;
  padding: 10px 0;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.result-section {
  background-color: #f0f0f0;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.result-section h2 {
  color: #007bff;
  animation: colorChange 3s infinite linear;
}

.result-section p {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  animation: colorChange 1s infinite linear;
}

.result-section a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
  animation: colorChange 4s infinite linear;
}

.result-section a:hover {
  color: #0056b3;
}

.result-section ul {
  list-style: none;
padding: 0;
  margin-top: 20px;
}

.result-section li {
  padding: 10px 0;
}

.result-section li a {
  color: #333;
  transition: color 0.3s ease;
  animation: colorChange 6s infinite linear;
}

.result-section li a:hover {
  color: #007bff;
}

.text-gradient {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: text-animation 2s infinite alternate;
}

@keyframes colorChange {
  0% {
    color: #007bff;
  }
  25% {
    color: #28a745;
  }
  50% {
    color: #dc3545;
  }
  75% {
    color: #ffc107;
  }
  100% {
    color: #007bff;
  }
}

@keyframes text-animation {
  0% {
    color: #007bff;
  }
  50% {
    color: #ffc107;
  }
  100% {
    color: #007bff;
  }
}

.bg-gradient {
  background-image: linear-gradient(to right, pink, white);
}

.text-gradient {
  background-image: linear-gradient(to right, blue, black);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}