/* 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: F25;
  src: url(/f25.ttf);
}

body {
  background-color: black;
  background-image: url("/images/stars_animated.gif");
  color: white;
  font-family: F25;
  font-size: 18px;
}

hr {
  border: 2px solid yellow;
}

.container {
  background-color: black;
  width: 60%;
  margin: auto;
  margin-bottom: 25px;
  margin-top: 25px;
  padding: 20px 20px 20px 20px;
  border: 5px solid #333333;
  border-radius: 5px;
  text-align: left;
  line-height: 1.8;
}

.container h1 {
  color: yellow;
  margin-top: 5px;
  margin-bottom: 0px;
}

@media screen and (min-width: 501px) {
  .container h1 {
    font-size: 60px;
  }
}

@media screen and (max-width: 500px) {
  .container h1 {
    font-size: 30px;
  }
}

.container a, a:visited, a:active {
  color: yellow;
  text-decoration: none;
}

.container a:hover {
  background-color: yellow;
  color: black;
}

.container img {
  border: 5px solid #333333;
  border-radius: 5px;
}

.articles {
  font-size: 23px;
}

.nav {
  margin-top: 0px;
  margin-bottom: 30px;
}