html, body {
  height: 100%;
  margin: 0;
}

.app-wrapper {
  min-height: 100%;
  width: 100%;
}

* {
  font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

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

.slide-up {
  animation: slideUp 0.6s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.stagger-1 {
  animation-delay: 0.1s;
}

.stagger-2 {
  animation-delay: 0.2s;
}

.stagger-3 {
  animation-delay: 0.3s;
}

.stagger-4 {
  animation-delay: 0.4s;
}

body {
  box-sizing: border-box;
}

.hero-image-container {
  background-image: url('assets/hero-background.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.about-image-container {
  background-image: url('assets/about-image.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.benefits-image-container {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  display: flex;
}

.benefits-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
