body {
    margin: 0;
}

.tour{
    background: #074357;
    height: 100vh;
    margin: 0;
}

h2{
    margin: 0;
    color: white;
}

.tour__head{
    padding-top: 10vh;
    text-align: center;
    margin-bottom: 50px;
}

.main-container {
  display: flex;
  height: 100vh;
  align-items: center;
  background: #111;
}

.main-container .image-container {
  /* flex: 1; */
  height: 100%;

  position: fixed;
  width: 100%;
}

.main-container h1 {
  flex: 1;
  text-align: center;
  font-weight: 00;
  letter-spacing: 10px;

  z-index: 100;
  text-shadow: 2px 16px 16px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  font-size: 36px;
  color: whitesmoke;
  font-family: 'andale mono', monospace;
  text-shadow: 0 0 5px pink, 0 0 10px pink, 0 0 20px pink, 0 0 30px purple, 0 0 40px pink, 0 0 50px pink, 0 0 70px pink;
  animation: flicker 60s infinite normal;
}

canvas{
    width: 100%;
}

.glowing-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  color: black;
  font-family: 'rockwell', sans-serif;
  text-shadow: 0 0 5px black, 0 0 10px grey, 0 0 20px blue, 0 0 30px purple, 0 0 40px purple, 0 0 50px blue, 0 0 70px yellow;
  animation: flicker 60s infinite normal;
}

#fade-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0; /* Start as invisible */
    transition: opacity 2s ease; /* Animate opacity changes */
    z-index: 2; /* Ensure overlay is above other elements */
}


@keyframes flicker {
  40% { opacity: 1; }
  30% { opacity: 0; }
  40% { opacity: 0; }
  20% { opacity: 0; }
  50% { opacity: 0; }
}

img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
