@import url("https://fonts.googleapis.com/css2?family=Fuzzy+Bubbles:wght@400;700&family=Itim&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");

h1 {
  font-family: "Fuzzy Bubbles", sans-serif;
}

h2 {
  font-family: "Itim", cursive;
  /* font-style: normal; */
}

p,
h4 {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
}

.secondary-bg-color {
  background-color: #f4f6db;
}

.primary-text-color {
  color: #397f47;
}

.secondary-text-color {
  color: #92ca67;
}
.primary-bg-color {
  background-color: #8cc962;
}

.box-bg-color {
  background-color: #fefff2;
}

.footer-bg-color {
  background-color: #edf3d2;
}

.button-bg-color {
  background-color: #305e41;
  cursor: pointer;
}

.button-bg-color:hover {
  background-color: #397f47;
}

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

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.delay-100 {
  animation-delay: 0.1s;
}
.delay-200 {
  animation-delay: 0.2s;
}
.delay-300 {
  animation-delay: 0.3s;
}
.delay-400 {
  animation-delay: 0.4s;
}

.logo {
  max-width: 180px;
  margin-bottom: 1rem;
}
