
.bannerButtons{
  display: flex;
  justify-content: center;
  gap: 35px;
  padding-bottom: 2em;
}

.landingOne{
  text-align: center;
  padding: 1em;
  border: thin solid #c4c2c2;
  border-radius: 5px;
}
.landingTwo{
  text-align: center;
  padding: 1em;
  border: thin solid #c4c2c2;
  border-radius: 5px;
}
.landingThree{
  text-align: center;
  padding: 1em;
  border: thin solid #c4c2c2;
  border-radius: 5px;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
.myPopUp{
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: white;
  width: 40%;
  border: thin solid #2a2727;
  border-radius: 5px;
  padding: 1em 1em 0 1em;
}
.tip-header{
  text-align: center;
}
.tip-buttons{
  text-align: right;
}
.tip-body{
  text-align: center;
  padding-bottom: 2em;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 23px;
  grid-row-gap: 0px;
}
.date-picker {
  border-radius: 5px;
  border: thin solid #100f;
  padding: 0.25em;
}

