body {
  margin: 0;
  font-family: Arial;
  color: #001f3f;

  /* Animated gradient background */
  background: linear-gradient(120deg, #87ceeb, #ffffff, #001f3f);
  background-size: 300% 300%;
  animation: bg 8s infinite;
}

/* BACKGROUND ANIMATION */
@keyframes bg {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* HEADER */
.header {
  background: rgba(255, 255, 255, 0.3);
  padding: 15px 30px;
  backdrop-filter: blur(10px);
}

.logo {
  margin: 0;
  color: #fff;
}

/* CONTENT */
.content {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px;
  background: linear-gradient(90deg, #87ceeb, #001f3f);
  border-radius: 12px;
  color: #fff;
}

.content h1 {
  text-align: center;
  margin-bottom: 20px;
}

.content p {
  line-height: 1.8;
  text-align: justify;
}
