/* Background and overall layout */
body {
  background-color: #ebdfc7; /* Soft parchment-like background */
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  margin: 0;
  padding: 20px;
  animation: fadeInBody 1s ease-in-out;
}

/* Logo and header */
header {
  text-align: center;
  padding: 20px 0;
  background-color: #fffaf0;
  animation: slideInDown 1s ease-out;
}

header h1 {
  font-size: 2.5em;
  color: #5c4033;
  margin-top: 10px;
  animation: fadeInText 2s ease-in;
}

/* All H2 tags animation */
h2 {
  text-align: center;
  color: #b3541e;
  margin-top: 40px;
  animation: fadeInText 1.5s ease-in-out;
}

/* Paragraph text */
body > p, ul {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInText 2s ease-in-out;
}

/* Unordered list styling */
ul {
  padding-left: 40px;
  color: #333;
  list-style-type: disc;
  animation: fadeInList 1.5s ease-in;
}

ul li {
  margin-bottom: 10px;
  animation: slideInLeft 1s ease-out;
}

/* Animations */
@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes fadeInList {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}