.nav-container {
  mix-blend-mode: normal !important;
}

.home-footer {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 90%;
  text-align: center;
}

html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
}


main {
  padding: 2em;
  padding-top: 3em;
  color: #000000;
  background-color: #ffffff;
}


/* Title text */
.text-container {
  height: 100vh;
  width: 100vw;
  position: fixed;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  color: #ffffff;
  mix-blend-mode: difference;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  top: 0;
  left: 0;
  padding: 20px;
  box-sizing: border-box;
}


.text-line {
  display: block;
  text-align: left;
  white-space: nowrap;
  line-height: 0.8;
  overflow: hidden;
}


.text-one {
  font-size: 137px;
  font-weight: 700;
  margin-top: 15vh;
  text-align: left;
  width: 100%;
}

.text-two {
  font-size: 50px;
  font-weight: 600;
  margin-top: 0;
  text-align: left;
  width: 100%;
}

/* Word animation styles */
.word {
  display: inline-block;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1), 
              transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  white-space: nowrap;
}

.word-space {
  display: inline-block;
  white-space: pre;
}


.text-container .word {
  opacity: 0;
  transform: translateY(30px);
}


@media (max-width: 1200px) {
  .text-one { font-size: 100px; }
  .text-two { font-size: 40px; }
  .text-line { white-space: normal; }
}

@media (max-width: 768px) {
  .text-one { font-size: 70px; margin-top: 8vh; }
  .text-two { font-size: 30px; }
}

#imageContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}
#imageContainer > * {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}


