body {
  background-color: #000000;
  margin: 0;
}

.Body {
  position: relative;
  width: 100%;
  height: 100vh; /* make sure it fills the screen */
  background: #000000; /* optional, to see boundaries */
}

.BodyText {
  position: relative;
  top: 500px;
  width: 90%;
  height: 500px; /* make sure it fills the screen */
  background: #424242; /* optional, to see boundaries */
  left: 50%;
  transform: translate(-50%, 0%);
}

.Title_Image {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translate(-50%, 0%);
}

.TitleHeading {
  color: #ffffff;
  font-size: 36px;
  font-family: "Comic Sans MS", Comic Sans, cursive;
  text-align: center;
}

.TitleHeadingSmaller {
  color: #ffffff;
  font-size: 28px;
  font-family: "Comic Sans MS", Comic Sans, cursive;
  text-align: center;
}

.Paragraph {
  color: #ffffff;
  font-size: 18px;
  font-family: "Comic Sans MS", Comic Sans, cursive;
  text-align: center;
}