/* 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." */
h1  
{
  color: Red;
  font-family: omen;
}

h2
{
  color: Red;
  font-family: omen;
}


body 
{
   
  background-color: black;
  color: White;
  font-family: Calibri;
  margin: 1;
}

     /*Big thanks W3School for the sponsoring of "Why the fuck this doesn't work on the Style.css?*/
    /* Style the header */
    header {

      background-color: #000000;
      padding: 30px;
      text-align: center;
      font-size: 15px;
      color: White;
      border: 1px Solid Red;
    }
    
    /* Create two columns/boxes that floats next to each other */
    nav {
      float: left;
      /* width: 30%; 
      background: #000000;*/
      background-image: linear-gradient(to bottom, #000000 0%, #330000 100%);
      padding: 5px;
      border: 1px Solid Red;
      text-align: center;
    }
    
    /* Style the list inside the menu */
    nav ul {
      height: 100%;
      list-style-type: none;
      padding: 0;
      
    }
    
    article {
      background-image: linear-gradient(to bottom, #000000 0%, #330000 100%);
      float: left;
      padding: 20px;
      background-color: #000;
      border: 1px Solid Red;
      z-index: 5;
    }

    section:after {
      content: "";
      display: table;
      clear: both;
    }
    
    /* Style the footer */
    footer {
      /*height: 100%;*/
      background-image: linear-gradient(Black, red);
      background-color: #000000;
      padding: 10px;
      text-align: center;
      border: 1px Solid Red;
    }
    
    /* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
    @media (max-width: 600px) {
      nav, article {
        width: 100%;
        height: auto;
      }
    }

