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

/* Global Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Times New Roman', serif;
  font-size: 12pt;
  color: #e0e0e0;
  background: url('bluestars.jpg') no-repeat center center fixed;
  background-size: cover;
  overflow-x: hidden;
  position: relative;
  text-align: center;
}

/* Animated Falling Stars */
.falling-stars {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.falling-stars::before,
.falling-stars::after {
  content: '';
  position: absolute;
  top: -10%;
  width: 2px;
  height: 20px;
  background: white;
  box-shadow:
    10vw 0px
