/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


@font-face {
  font-family: 'ReallyFont'; 
  src: url('ReallyFree-ALwl7.ttf') format('ttf'); 
  font-weight: normal;
  font-style: normal;
}

/* Apply it to elements */
body {
  font-family: 'ReallyFont', sans-serif;
}

textarea, button {
  font-family: 'ReallyFont', sans-serif;
}


body {
  background-image: url('paper.jpg'); /* replace with your image file */
  background-size: cover;       /* makes it cover the entire screen */
  background-position: center;  /* centers the image */
  background-repeat: no-repeat; /* prevents tiling */
}

#letterWrapper {
  display: none; /* hidden at first */
  flex-direction: column;
  align-items: center;
  transform: translateY(-50px);
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

#letterWrapper.show {
  display: flex;      /* shows wrapper */
  transform: translateY(0); /* slides down */
  opacity: 1;         /* fades in */
}

#letterImage {
  width: 200px; /* adjust size */
  height: auto;
  margin-bottom: 10px;
}
