.cherry-bomb-one-regular {
  font-family: "Cherry Bomb One", system-ui;
  font-weight: 400;
  font-style: normal;
}
.caveat-brush-regular {
  font-family: "Caveat Brush", cursive;
  font-weight: 400;
  font-style: normal;
}

body {
    color: cadetblue;
    background-color: mintcream;
    font-family: "Caveat Brush";
    background-image: url(https://file.garden/aBJizA47Ny_7I1ZP/samplegraphics/background.gif);
    background-size: cover;
    overflow: clip;
}
h1 {
    font-family: "Cherry Bomb One";
}
.parent {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;    /* Centers vertically */
  height: 100vh;          /* Example: full viewport height */
    width: 100vw;
    overflow: clip;
}
.child {
      display: block;
  align-items: center;    /* Centers vertically */
    justify-content: center;
    height: 40vh;
    padding: 5%;
    width: 50vw;
    border: solid;
    border-width: 5px;
    overflow: scroll;
    margin: 0 auto;
    background-color: white;
    text-align: center;
}
a {
      color: darkcyan;
}
a:hover {
    background-color: pink;
}