body {
    margin: 0;
    padding: 0;
    width: 100vw;
    background-color: black;
}

#header-text
{
    height: 100vh;
    width: 100vw;
    background-color: black;
}

#header-vid
{
  position: absolute;
  object-fit:cover;
}

h1 {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -35%);
  color: white;
  font-family: Arial, sans-serif;
  font-size: clamp(1.5rem, 6vh, 5rem);
  font-weight: bold;
  color: transparent; 
  -webkit-text-stroke: 3px #ffffff; 
  text-align: center;
  z-index: 10;
}
h2 {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -55%);
  color: white;
  font-family: Arial, sans-serif;
  font-size: clamp(0.5rem, 3vh, 2.5rem);
  font-weight: bold;
  color: transparent; 
  -webkit-text-stroke: 2px #ffffff; 
  text-align: center;
  z-index: 10; 
}

p {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -55%);
  color: white;
  font-family: Arial, sans-serif;
  font-size: clamp(0.25rem, 2vh, 1.5rem);
    font-weight: thin;
    color: white; /* Makes the interior empty */
    text-align: center;
    z-index: 10; 
  }

  #background{
    position: relative;
    height: 50vh;
    width: 100vw;
    top: -15vh;
    background-color: black;
  }

  #game-jams{
    position: relative;
    height: 100vh;
    width: 100vw;
    top: -50px;
    background-color: black;
  }

#about-me
{
  top: 15vh;
  position: absolute;
  color: transparent;
  width: 500px;
  text-align: center;
}

  #background-text
  {
    position: absolute;
    width: 500px;
    text-align: center;
    top: 25vh;
  }

  #lumenaut-splash
  {
    position: relative;
    width: 100vw;
    top: -50px;
  }

  #lumenaut-title
  {
    top: 20vh;
    position: absolute;
    color: transparent;
    width: 500px;
    text-align: center;
  }

  #lumenaut
  {
    position: relative;
    height: 100vh;
    width: 100vw;
    top: -15vh;
    background-color: black;
  }

  #lumenaut-vid
  {
    object-fit:cover;

  }

  #lumenaut-text
  {
    top: 30vh;
  }

  #playtest-button
  {
    background-color: white;
    color: black;
    border-color: white;
    border-style: solid;
    border-width: 25px;;
    border-radius: 15px;
    top: 42vh;
  }
  #game-jam-title
  {
    top: 5vh;
    position: relative;
    color: transparent;
    text-align: center;
  }

  #game-jam-description
  {
    top: 10vh;
  }

  #three-up {
    margin-top: 25vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap; /* Ensures all images stay in a single row */
    gap: 10px;
  }
  
  .warp {
    max-width: 100%; /* Each image takes up a maximum of 30% of the container width */
    height: auto; /* Maintain aspect ratio */
  }
