@import './_settings.css';
@import './_fonts.css';
@import './_title.css';
@import './_hero-carousel.css';
@import './_newsletter-overlay.css';
@import './_page.css';
@import './_footer.css';

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: 'Arial Black', Arial, sans-serif;
}

body.home {
  height: 100%;
  background-color: var(--color-blue);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
