body {
  background: linear-gradient(to right, #fdf6e3, #d0f0c0);
  color: #3b3b3b;
  font-family: 'Trebuchet MS', 'Comic Sans MS', sans-serif;
  padding: 20px;
  line-height: 1.6;
  animation: fadeIn 1.5s ease-in;
}

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

@keyframes bounceIn {
  0% { transform: scale(0.8); opacity: 0; }
  60% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); }
}

h1 {
  color: #6b8e23;
  text-shadow: 2px 2px #dcdcdc;
  font-size: 2.5em;
  text-align: center;
  animation: bounceIn 1s ease-out;
}

h2 {
  color: #8b4513;
  margin-top: 30px;
  font-size: 1.8em;
}

p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

ul {
  background-color: #fff8dc;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 2px 2px 5px #ccc;
  list-style-type: square;
  transition: box-shadow 0.3s ease;
}

ul:hover {
  box-shadow: 0 0 15px #a0cfa0;
}

img {
  display: block;
  margin: 20px auto;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  max-width: 100%;
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.05);
}

a {
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #ff6347;
}

a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #20b2aa;
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}

a:visited {
  color: #8a2be2;
}

a:active {
  color: #ff4500;
}

h2 + ul {
  margin-bottom: 30px;
}
