 @import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@700&display=swap");
body {
  background-image: url("darkgraymetal.jpg"); /* The image used */
  background-color: #cccccc; /* Used if the image is unavailable */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  position: relative;
  height:100vh;
  width: 100vw;
  margin: 0;
}
#app {
  position: absolute;
  top: 50%;
  text-align: center;
  left: 50%;
  margin: 0;
  transform: translateX(-50%) translateY(-50%);

}
h1 {
  margin-top: 0;
  font-family: "Roboto Mono", sans-serif;
  font-weight: 700;
  font-size: 45vh;
  color: #119729;
  -webkit-text-stroke: 1.5vh #3f3f3f;
}