@font-face {
  font-family: header-font;
  src: url("/SyneMono-Regular.ttf")  format('truetype');
}
@font-face {
  font-family: text-font;
  src: url("/CutiveMono-Regular.ttf") format('truetype');
}

.header {
  font-family: header-font;
  color: red;
  text-align: center;
}

.text-box {
  font-family: text-font;
  color: black;
  background-color: #B8BED9;
  border: 2px solid #E2D3F2;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto auto auto auto;
  height: 200px;
  width: 200px;
}

.footer {
  background-image: url("/grass-1.png");
  background-repeat: repeat-x;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 300px;
}

  
body {
  background-image: url("/starry-night.png");
  background-repeat: no-repeat;
  font-family: Verdana;
}