body {
  background-image: url('../../content/P1020719.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: garamond, serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  text-align: center;
}


@keyframes clickFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}


@keyframes paragraphFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}


p {
  animation: paragraphFadeOut 20s forwards;
}


.click-text {
  position: absolute;
  color: black;
  font-size: 15px;
  font-family: garamond, serif;
  pointer-events: none;
  animation: clickFadeOut 20s forwards; 
}

