@font-face {
  font-family: 'StPaulScript'; /* Choose a name for your font */
  src: url('../fonts/stpaulscript.otf') format('opentype'); /* Specify the path and format */
  font-weight: normal; /* Optional: Define weight if applicable */
  font-style: normal; /* Optional: Define style if applicable */
}
body {
    font-family: 'StPaulScript', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    /* background-color: #1a1a1a; */
    /* color: #e0e0e0; */
    background-color: #383b43;
    color: #bac7e3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}
.container {
  padding: 2rem;
  text-align: center;
  display: inline-block;
  vertical-align: top;
}
img {
  max-height: 60vh;
  max-width: 80vw;
  vertical-align: text-top;
}
h2 {
  /* margin: 0 auto; */
  text-align: center;
}

@media screen and (max-width: 600px) {
  h2 {
    font-size: 12px;
  }
}

@media screen and (max-width: 300px) {
  h2 {
    display: none;
  }
}
