@font-face {
  font-family: 'ABCMonumentGrotesk-Bold';
  src: url(assets/ABCMonumentGrotesk-Bold.woff2) format('woff2');
}

@font-face {
  font-family: 'Items-Regular';
  src: url(assets/Items-Regular.woff2) format('woff2');
}

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

body {
  font-family: 'Items-Regular', serif;
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem;
  letter-spacing: 0.01969rem;

  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #fff;
  color: #000;
}
.slogan {
  text-transform: uppercase;
  font-size: 1.65rem;
  line-height: 1.9rem;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 3vh 0 2vh; 
  position: relative;
  z-index: 1;
  text-align: center;
}

.logo {
  width: 35vw;
  height: auto;
  padding-bottom: 7vh;
  margin-left: 70px;
}

.logo:hover {
  cursor: pointer;
}

.intro-text {
  max-width: 650px;
  width: 50vw;
  margin: auto;
  padding-bottom: 25px;
}

.intro-text a {
  color: #000;
  font-style: italic;
  text-decoration: none;
}

.intro-text a:hover {
  color: #E10600;
}

.ctas {
  width: fit-content ;
  /* gap: 3rem; */
  display: flex;
  justify-content: space-between;
  margin: auto;
}

.ctas button {
  font-family: 'ABCMonumentGrotesk-Bold', sans-serif;
  font-size: .75rem;
  line-height: .8rem;
  color: #000;
  text-decoration: none;

  margin: 0 10px;
  padding: 10px 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.ctas button a {
  font-family: 'ABCMonumentGrotesk-Bold', sans-serif;
  font-size: .75rem;
  line-height: .8rem;
  color: #000;
  text-decoration: none;
}
.ctas button:hover, .ctas button a:hover {
  color: #E10600;
}


#image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; 
}

#image-wrapper .animated-image {
  position: absolute !important;
}


@media (max-width: 800px) {
  .logo {
    width: 55vw;
    height: auto;
    margin-left: 5vw;
  }

  .intro-text {
    width: 90vw;
  }

  .ctas button {
    min-width: 20vw;
  }

  .ctas button a:hover,
  .intro-text a:hover { 
    color: inherit; 
  }

  .logo:hover svg path {
    fill: #000;
  }

  .slogan {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}