/* 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
   border-color: 
   "how to change link color." */

body {
  background-color: black;
  color: #32CD32;
  font-family: Garamond;
  text-align: center;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
}

hr {
  border-top: 1px solid #32cd32
}

section {
   padding: 25px 50px 75px 100px;
}

ul {
  position: sticky;
  top: 0;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #000000;
}

ul li {
  float: left;
  display: block;
  color: #32CD32;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

ul li a {
  display: block;
  color: white;
  text-align: center;
  text-decoration: none;
}

ul li a:hover {
  background-color: white;
}

.blink {
  animation: blinker 1.5s linear infinite;
  color: black;
  background-color: white;
}
@keyframes blinker {
  50% {
    opacity: 0;
      }
}
        
      