html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden; 
}

body {
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  box-sizing: border-box;
}

h1 {
  color: #333;
  font-family: 'Shadows Into Light', serif;
  font-size: 3rem;
  font-weight: 400;
  font-style: normal;
}

@media only screen and (max-width: 768px) {
  body {
    flex-direction: column;
    justify-content: center;
    height: 100svh;
  }
  h1 {
    font-size: 2rem;
  }
}
