body {
  margin: 0;
  padding: 0;
  background-color: #000;
  background-image: url('	https://trvltypstr.com/wp-content/uploads/tt-images/app-parts/tt_background_gray.png'); 
}

section {
}

form {
}

.step {
  display: none;
  
}

.step.active {
  display: block;
}

.form-group {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100svh;
}

img {
  /* max-width: 100%; */
  /* max-height: 100%; */
  /* width: auto; */
  /* height: auto; */

  /* max-width: 100%;
  max-height: 100%;
  object-fit: contain; */

}



.grid-container-intro {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto; /* Added an empty row at the top and a row at the bottom */
  gap: 10px;
  max-width: 100%;
  max-height: 100%;
}

.grid-container-intro img {
  max-width: 100%;
  /* width: auto; */
  /* height: auto; */
  max-height: 100%;
  object-fit: contain;
}



.grid-container-2pic {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr 1fr auto;
  gap: 10px;
  max-width: 100%;
  max-height: 100%;
}

.grid-container-2pic img {
  max-width: 100%;
  /* width: auto; */
  /* height: auto; */
  max-height: 100%;
  object-fit: contain;
}



.grid-container-3pic {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr 1fr 1fr auto;
  /* gap: 20px; Future Chris: this cuts off top and bottom!!! */
  max-width: 100%;
  max-height: 100%;
}

.grid-container-3pic img {
  max-width: 100%;
  /* width: auto;
  height: auto; */
  max-height: 100%;
  object-fit: contain;
}


.grid-item {
  overflow: hidden;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 20px 0 20px; 
}

.grid-item.paragraph {
  /* Styles for the paragraph grid item */
  color: #fff;
  text-align: center;
  padding: 20px;
}


.overlay-image {
  position: absolute;
  top: 20%;
  left: 33%;
  z-index: 1;
  width: 34%;
  height: auto;
  visibility: hidden;
}


