body {
  background-color: #fccf9eff;
  font-family: "Times New Roman", serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #967879ff;
}

h1 {
  text-align: center;
  font-size: 40pt;
  margin: 2rem 0;
  color: #ce7d20ff;
}

h2 {
  text-align: center;
  font-size: 20pt;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: #cb9765ff;
}

.text {
  margin: 2rem auto;
  padding: 0 1rem;
  max-width: 800px;
  color: #9d7053ff;
}

.iconWrapper {
  text-align: center;
  display: flex;
  justify-content: center;
  align-self: center;
  margin-top: 50px;
  margin-bottom: 3rem;
}

.icon {
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease;
}

.icon:hover {
  transform: scale(1.1);
}

.link {
  text-align: center;
  margin: 0.5rem 0;
}

.link a {
  color: #799363ff;
  text-decoration: none;
  font-weight: bold;
}

.link a:hover {
  text-decoration: underline;
}

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

* {
  animation: fadeIn 1s ease-in-out;
}

@media (max-width: 800px) {
  h1 {
    font-size: 36pt;
  }

  h2 {
    font-size: 18pt;
  }
}
