  :root {
  --dark: #343E3D;
  --middle: #607466;
  --light: #7BD389;
  --viberant: #38E4AE;
  }

.dm-sans-uniquifier {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
h1{
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  text-align: center;
  font-size: 9rem;
  color: var(--dark);
}
h3{
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  text-align: center;
  font-size: 3rem;
  color: var(--dark);
}

p{
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  text-align: left;
  font-size: 1.4rem;
  color: var(--dark);
}
.input {
  position: fixed;
  bottom: 0;
  width: 60%;
  height: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  padding: 1rem;
  border-radius: 8rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 50;
  display: flex; /* Keeping flex for potential future use or if user changes mind about 'no kids' */

  align-items: center;
  margin-bottom: 1rem;
  }
input{
  color: var(--middle);
  width: 85%;
  height: 3.6rem;
  border-radius: 5rem;
  border: 1px solid white;
}
button{
  width: 15%;
  height: 4rem;
  border-radius: 5rem;
  margin-left: 1rem;
  background-color: white;
  border: 1px solid white;
}
button:hover{
  background-color: var(--middle);
}
button:active{
  background-color: var(--dark)
}