body {
  font-family: 'Comic Sans MS', sans-serif;
  background-color: #F0F8FF;
  color: #2E8B57;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  color: #4682B4;
  text-shadow: 1px 1px #FFD700;
}

p {
  line-height: 1.6;
  margin: 15px;
}

a {
  color: #FF4500;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #FF6347;
}

.navbar {
  background-color: #556B2F;
  padding: 10px;
  text-align: center;
}

.navbar a {
  margin: 0 15px;
  font-weight: bold;
}

footer {
  background-color: #2F4F4F;
  color: #F5FFFA;
  padding: 20px;
  text-align: center;
}

button {
  background-color: #6B8E23;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

button:hover {
  background-color: #556B2F;
  color: white;
}