html {
  background: #ffffff;
}

body {
  width: 100% !important;
  /* Use the most accurate viewport units first */
  height: 100svh;
  min-height: 100svh;
  /* Fallbacks for older browsers */
  height: 100dvh;
  min-height: 100dvh;
  height: 100vh;
  min-height: -webkit-fill-available;
  min-height: fill-available;
  overflow-x: hidden;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-direction: row;
  -webkit-flex-direction: row;
     -ms-flex-direction: row;
  padding: 0;
  margin: 0;
  align-items: stretch;
  -webkit-align-items: stretch;
     -ms-flex-align: stretch;
}

.column-wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
}

.column {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.column-duplicate {
  display: none;
}

@media (min-width: 769px) {
  .column-duplicate {
    display: flex;
  }
}

head {
  display: block;
  font-size: 2em;
}

.image-container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  /* padding: 1rem; */
  height: 100%;
}

.image-container img {
  max-width: 50vw;
  width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .image-container {
    flex-direction: row;
  }
  .image-container img {
    max-width: 90vw;
  }
}

.main-text {
  font-family: 'Pinyon Script';
  position: fixed;
  top: 0;
  left: 0;
  width: 50vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: bold;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
  color: #000000;
  z-index: 10;
  pointer-events: none;
  animation: flash 1s infinite;
  letter-spacing: 0.1em;
  word-spacing: 0.3em;
  text-shadow: #ffffff 1px 1px 2px, #ffffff 0 0 1em, #ffffff 0 0 0.2em;
}

.main-text-duplicate {
  display: none;
}

@media (min-width: 769px) {
  .main-text-duplicate {
    display: flex;
    left: 50vw;
  }
}

@media (max-width: 768px) {
  .main-text {
    width: 100vw;
    font-size: clamp(3rem, 9vw, 6rem);
  }
}

@keyframes flash {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}