body {
    font-family: "Raleway", sans-serif;
}

.fs-45 {
    font-size: 45px;
}

/* Add a reusable animation class */
.animated {
  opacity: 0; /* Hidden by default */
  animation-fill-mode: both;
}

/* General animation keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleUp {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Apply fadeIn */
.fadeIn {
  animation: fadeIn 1.3s ease-in-out both;
}

/* Apply fadeInLeft */
.fadeInLeft {
  animation: fadeInLeft 1.2s ease-in-out both;
}

/* Apply fadeInRight */
.fadeInRight {
  animation: fadeInRight 1.2s ease-in-out both;
}

/* Button animation */
.scaleUp {
  animation: scaleUp 1.2s ease-in-out both;
}

/* Reset animations after they finish */
.reset {
  opacity: 0;
  transform: translateX(0);
  transform: scale(0.8);
}