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;
}

/*
img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
*/

.form-group {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100svh;
}

.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-2pic {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr 1fr auto;
  /* grid-template-rows: auto 1fr 1fr 5svh; for future footer info or links */
  gap: 10px;
  max-width: 100%;
  max-height: 100%;
}

.grid-container-3pic {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr 1fr 1fr auto; /* Added an empty row at the top and a row at the bottom */
  gap: 5px;
  max-width: 100%;
  max-height: 100%;
}

.grid-item {
  overflow: hidden;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px; /* Added padding for spacing between items */

  position: relative;
}

.grid-item img {
  max-width: 100%;
  height: auto;
}

.grid-item.empty {
  /* Styles for the empty grid item */
  /* background-color: #555; */
  /* You can customize the background color */
  border: none; /* Remove the border for the empty items */
}

.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;
}


