body {
  background-color: #feefd3ff;
  font-family: Georgia, serif;
  color: #967879ff;
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

.underHeader {
  background: linear-gradient(135deg, #65aea8ff, #799363ff);
  padding: 3rem 1rem;
  text-align: center;
  border-bottom: 2px solid #ccc;
}

.underHeader h2 {
  font-size: 28pt;
  margin: 0;
  font-weight: bold;
  letter-spacing: 1px;
  color: #4f664f;
  border-bottom: 3px solid #799363ff;
  display: inline-block;
  padding-bottom: 0.2rem;
}

.text p {
  text-align: justify;
  margin-bottom: 1.5rem;
  color: #967879ff;
  font-size: 1.1rem;
}

.fade-in {
  animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .underHeader h2 {
    font-size: 22pt;
  }

  .text {
    padding: 1.5rem;
    font-size: 1rem;
    max-width: 90%;
  }
}
