body {
  margin: 0px;
  background-image: url(../images/bg.webp);
}

#container {
  /* Center the text in the viewport. */
  position: absolute;
  margin: auto;
  width: 100vw;
  height: 80pt;
  top: 0;
  bottom: 0;
  /* This filter is a lot of the magic, try commenting it out to see how the morphing works! */
 	filter: url(#threshold) blur(0.6px);
}

/* Your average text styling */
#title {
  color: #fff;
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translate(-50%, -50%);
  font-family: "p22-grosvenor", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 100pt;
  text-align: center;
  user-select: none;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

#text1,
#text2 {
  color: antiquewhite;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 50px;
  left: 50%;
  top: 70%;
  transform: translate(-50%, -50%);
  font-family: "lust-display", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 80pt;
  text-align: center;
  user-select: none;
}


#prayButton,
#increment {
  font-family: "atrament-web", sans-serif;
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 50px;
  background-color: #c2e5ec;
  color: #2e343d;
  border: none;
  border-radius: 5px;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  transition: top 0.5s ease-in;
}
#increment {
  top: 75%;
  background-color: #f0ffa7;
  color: #2e343d;
}

#prayButton:hover {
  background-color: rgb(228, 241, 255);
  top: 68%;
  transition: top 0.5s ease-in;
}
@media (width <= 600px) {
  #title {
    font-size:2.7rem;
    line-height: 1em;
  }
  #text1,
  #text2 {
    font-size: 75pt;
  }

  
  #prayButton,
  #increment {
    width: 275px;
    height: 2rem˚;
    font-size: 3rem;
  }
}
@media screen and (min-width: 667px) and (max-width: 1200px) {
  #title {
    font-size: 80pt;
  }
  #text1,
  #text2 {
    font-size: 75pt;
  }
  #prayButton,
  #increment {
    width: 275px;
    height: 110px;
    font-size: 55px;
  }
}
