body {
  margin: 0;
  padding: 0;
  background-color: #000;
  background-image: url('https://trvltypstr.com/wp-content/uploads/tt-images/app-parts/tt_background_gray_o175.png'); 
  background-size:cover;
  background-repeat: no-repeat;
}


progress[value] {
  --color: 
    linear-gradient(#fff8,#fff0),
    repeating-linear-gradient(135deg,#0003 0 10px,#0000 0 20px),
    #31c6f7;
    --background: lightgrey; /* the background color */

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  width: 100%;
  margin: 0 0;
  border-radius: 10em;
  background: var(--background);
}
progress[value]::-webkit-progress-bar {
  border-radius: 10em;
  background: var(--background);
}
progress[value]::-webkit-progress-value {
  border-radius: 10em;
  background: var(--color);
}
progress[value]::-moz-progress-bar {
  border-radius: 10em;
  background: var(--color);
}


form {
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.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-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 3px 3svh auto;
  gap: 5px;
  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 7fr 7fr 7fr 5px 1fr auto;
  row-gap: 3px;
  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;  */
}

.footerpic {
  max-width: 100%;
  /* width: auto;
  height: auto; */
  max-height: 100%;
  object-fit: fill;
  background-color: #000;
}

.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: 33%;
  height: auto;
  visibility: hidden;
}


