@font-face {
    font-family: 'Floras Display';
    src: url('/fonts/florasdisplay.otf') format('truetype');
}

body {
  background-image: url('/images/gifs/waterbg.gif');
  background-repeat: no-repeat;
  background-size: 100%;
  text-align: center;
  border-style: double;
  border-width: 10px;
  border-color: #a68431;
  border-radius: 5px;
}

.parent{
  display: flex;
  min-height: 100vh;
  justify-content: center;
}
.child{
  margin: auto;
}

/* the code below is by ribo.zone */
  .imgtxt {
  width: fit-content;
  height: fit-content;
  display: inline-block;
  position: relative;
}
.imgtxt span {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  font-size: 2.5rem;
  color: #FFF;
  filter: drop-shadow(1px 1px 0 black) 
    drop-shadow(-1px 1px 0 black)
    drop-shadow(1px -1px 0 black)
    drop-shadow(-1px -1px 0 black);
}
.imgtxt:hover span, .imgtxt:focus span {
  opacity: 1;
}
.imgtxt:hover img, .imgtxt:focus img {
}