/* 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." */

body {
  background-color:#5ec6ff;
  color: black;
  font-family: Verdana;
}





.star-sticker {
  position: fixed;
  right: 0px;
  bottom: 0px;
  width: 25vw;         /* Smaller size to save room for a second one later */
  max-width: 320px;
  z-index: 999;
  pointer-events: none;
}







.starry-left-sticker {
  position: fixed;
  left: 0px;           /* Sticks it to the left edge instead of the right */
  bottom: 0px;         /* Sticks it to the bottom edge */
  width: 25vw;         /* Perfect size that leaves room to stack another one above */
  max-width: 320px;
  z-index: 999;
  pointer-events: none;
}



@font-face {
  font-family: 'Starborn';
  src: url('Starborn.ttf') format('truetype');
}

body {
  font-family: 'Starborn', sans-serif;
}
