.vt323-regular {
  font-family: "VT323", monospace;
  font-weight: 400;
  font-style: normal;
}

body {
    background: url(https://file.garden/aBJizA47Ny_7I1ZP/samplegraphics/background2.gif);
    color: white;
    background-repeat: repeat;
    background-size: auto;
    background-blend-mode: normal;
    font-family: "VT323";
    overflow: clip;
}
a {
    color: hotpink;
}
.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: black;
    text-align: center;
}
