/* Fonts */
/* Pixel Operator by Jayvee Enaguas (downloaded from dafont.com) */
@font-face {
    font-family: 'Pixel Operator', sans-serif;
    src: url('assets/PixelOperator-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Pixel Operator', sans-serif;
    src: url('assets/PixelOperator.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Pixel Operator SC', sans-serif;
    src: url('assets/PixelOperatorSC-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Pixel Operator SC', sans-serif;
    src: url('assets/PixelOperatorSC.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'VCR OSD Mono', monospace;
    src: url('assets/VCR-OSD-Mono.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


body {
  background-color: #441f9b; 
  font-family: 'Pixel Operator', sans-serif;
  margin-left: 20%;
  margin-right: 20%;
  margin-bottom: 5%;
}



h1 {
 font-family: 'Pixel Operator', sans-serif;
 font-weight: bold;
}

h2 {
 font-family: 'VCR OSD Mono', monospace;
 font-weight: normal;
}


header, nav, article, aside, footer {
  background-color: #8087A3;
}

header {
  color: white;
  line-height: 1;
  margin: auto;
}


nav {
  display: block;
  height: auto;
  overflow: auto;
  width: 30%;
  float: left;
  font-size: 1.5vw;
}

nav ul {
  color: black;
  list-style-type: none;
  margin: auto;
}


section {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

article {
  display: block;
  height: auto;
  font-size: 2vw;
  padding: 20px;
}

.intro article {
  display: block;
  width: 70%;
  height: auto;
  font-size: 2vw;
  padding: 20px;
  margin-left: 20px; 
}

footer {
  padding: 1px;
  display: block;
  text-align: left;
  height: 10%;
  width: auto;
  font-size: 24px;
}

footer img {
  vertical-align: sub;
  margin-left: 15px;
  width: auto;
  height: 24px;
}


/*
/////////////////////////////////////////
Tablets, phones turned horizontally, etc. 
/////////////////////////////////////////
*/
@media screen and (max-width: 1500px) {
  
 body {
  margin-left: 10%;
  margin-right: 10%;
  margin-bottom: 0%;
  font-size: 18px;
} 

 nav {
  padding: 0px;
}
 
 nav ul {
  font-size: 2.5vw;
  line-height: 28px;
  margin-top: 15px;
}
  
 
  
  article {
  font-size: 2.5vw;
  padding: 15px;
}
  
  .intro article {
  font-size: 2.5vw;
  padding: 15px;
  margin-left: 20px;
}
  
  footer {
    font-size: 18px;
  }
  
  footer img {
    height: 18px;
  }
} 


/* 
///////////////////
mobile phones, etc. 
///////////////////
*/
@media screen and (max-width: 700px) {
  
 
  nav {
    width: 40%
  }
  
  nav ul {
    font-size: 3.5vw;
    line-height: 28px;
    padding: 0px;
    margin-left: 35%;
    margin-top: 15px;
  }
  aside {
  font-size: 3vw;
  padding: 10px;
}
  
  
  article {
  font-size: 3vw;
  padding: 10px;
}
  .intro article {
    width: 60%;
    margin-left: 10px;
  }
  footer {
    font-size: 14px;
  }
  
  footer img {
    height: 14px;
  }
  
}