
* {
  box-sizing: border-box;
}



@font-face {
   font-family: myFont;
   src: url(PixelifySans-VariableFont_wght.ttf);
   font-weight: bold;
}

{
   font-family: myFont;
}

body {
   font-family: myFont;
   src: url(PixelifySans-VariableFont_wght.ttf);
   font-weight: bold;
  background-image: url('background.jpg');
  background-size:     cover;                      
    background-repeat:   no-repeat;
    background-position: center center; 
  
  background-image: black;
  
    color: #444444;
    font-size: 9pt;
    background-color: #FAFAFA;
}

h1 {
   font-family: myFont;
   src: url(PixelifySans-VariableFont_wght.ttf);
   font-weight: bold;
  color: white;
}

p {
  color: white;
}

header {
   font-family: myFont;
   src: url(PixelifySans-VariableFont_wght.ttf);
   font-weight: bold;
 background-image: url("header.jpg");
   background-size:     cover;                      
    background-repeat:   no-repeat;
    background-position: center 
  padding: 30px;
  text-align: bottom;
  font-size: 30px;
  	 height: 350px;
  width: 1000px;	
  color: white;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
 
}

nav {
   font-family: myFont;
   src: url(PixelifySans-VariableFont_wght.ttf);
   font-weight: bold;
  float: center;
  width: 1000px;

  background: black;
  padding: 5px;
  border-style: solid;
  border-color: #3f8a77;
  outline-width: medium;
   border-width: 2px;
}


nav ul {
  list-style-type: none;
  padding: 0;
}


article {
   font-family: myFont;
   src: url(PixelifySans-VariableFont_wght.ttf);
   font-weight: bold;
  float: center;
  padding: 20px;
  width: 1000px;
  background-color: black;
  height: 300px; /* only for demonstration, should be removed */
}

section::after {
  content: "";
  display: table;
  clear: both;
}

footer {
  background-color: #000000;
  padding: 10px;
  width: 1000px;
  text-align: center;
  color: white;
}

/* 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;
  }
}







