/* 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: black;
  color: white;
  font-family: Trebuchet;
  text-align: center;
}

h1{
  font-size: 50px;
  margin-top: -10px;
  
}

h2 {
  color: #a50000;
  font-family: Courier;
  font-size: 20px;
  letter-spacing: -1.2px;
  margin-top: -10px;
}

p {
  color: White;
  text-shadow: 5px 5px grey;
  font-family: Courier;
  font-size: 13px;
}

body {
  background-image: url('https://media0.giphy.com/media/v1.Y2lkPTc5MGI3NjExbHRjZXo4ZTRyNjFkdXVzZ2ZncjhkdndpcnN6cWxlcGExOWJqb3N6ZCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/3o7qE2KFaCY1xVIqu4/giphy.gif');
  background-size: cover;       /* Ensures the GIF fills the entire screen */
  background-position: center;  /* Centers the GIF */
  background-repeat: no-repeat; /* Prevents the image from tiling */
  background-attachment: fixed; /* Keeps background still while scrolling */
  margin: 0;                    /* Removes default browser spacing */
  height: 100vh;                /* Sets height to 100% of the viewport */
}

.fade-in-image {
  animation: fadeIn 5s;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100%{ opacity: 1; }
}


