/* styles.css */

@font-face {
  font-family: "Ammy's Handwriting"; /* placeholder name */
  src: url("ammys-handwriting.ttf") format("truetype");
  /* you’d replace the URL with the actual font file path/URL you have */
}

body {
  margin: 0;
  padding: 0;
  font-family: "Ammy's Handwriting", sans-serif;
  /* vertical gradient pastel to medium blue background */
  background: linear-gradient(to bottom, #eeeeff, #89cff0);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  color: #333; /* adjust as needed */
}