* {
    box-sizing: border-box;
}
body {
    background-color: white;
}
a:active {
    outline: none;
}
a.headlink {
    color: white;
    text-decoration: none;
}
h1 {
    color: black;
}
h2 {
    color: black;
}
h2.link {
    color: white;
    display: inline-block;
    padding: 5px;
    background-color: #08A7F1;
}
h3.link {
    color: white;
    display:inline-block;
    padding: 4px;
    background-color: #08A7F1;
}

html {
    font-family: "Lucida Sans", sans-serif;
}
header {
    background-color: white;
    color: #000000;    
}
#desktopHeader {
    display: block;
    padding: 15px;
}
#mobileHeader {
    display: none;
}
article {
    background-color: white;
    color:  black;
    padding: 15px;
}
hr {
   width: 100%;
   height: 5px;
   background-color: black;
}
@media only screen and (max-width: 500px) {
#desktopHeader {
	display: none;
}
#mobileHeader {
	display: block;
}
img {
    max-width: 100%;
    height: auto;
    clear: right;
}
}
#contactBlock {
    color: black;
    background-color: white;
    border: 2px;
    border-style: solid;
    border-color: black;
    max-width: 300px;
    max-height: 100px;
    float: right;
    padding: 10px;
}
@media only screen and (max-width: 650px) {
#contactBlock {
    float: none;
}
}
.youtubevideowrap {
    width: 80%;
    max-width: 640px;
    margin: 0 auto;
}
@media only screen and (max-width: 500px) {
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
.video-container iframe {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
}
.dropbtn {
    background-color: #0dacf6;
    color: white;
    padding: 4px;
    margin-bottom: 2px;
    border-style: solid;
    border-width: 1px;
    border-color: white;
    cursor: pointer;
    font-size: 17px;
}
.dropdown {
    position: relative;
    display: inline-block;
}
@media only screen and (max-width: 500px) {
.dropbtn {
    width: 150px;
}
.dropdown {
    display: block;
    width: 50%;
}
}
.dropdown-content {
    display: none;
    position: absolute;
    left: 30px;
    background-color: #08A7F1;
    min-width: 200px;
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: #999999}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #1dbcf6;
}
.dropdown:hover .dropbtn a {
    text-decoration: underline;
}
.topnav {
    background-color: white;
    position: relative;
    min-height: 5px;
}
.topnav a {
    color: white;
    text-decoration: none;
}
/* Hide the link that should open and close the topnav on small screens */

#menu_icon {
    display: none;
}
/*Eliminates the narrow dotted line around the menu icon*/

#menu_icon:active, #menu_icon:focus {
    outline: none;
}
 /* When the screen is less than 500 pixels wide, hide all links, except the menu icon, that opens and closes the menu */
@media only screen and (max-width: 500px) {
  .topnav .dropdown {display: none;}
  #menu_icon {
    display: inline;
    position: absolute;
    left: 250px;
    top: 15px;    
}
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media only screen and (max-width: 500px) {
  .topnav.responsive .dropdown {display: block;}
}

/* The following is for the 8-bit page links*/

.eightBitNav {
    background-color: white;
    position: relative;
    min-height: 5px;
}
.eightBitNav a {
    color: white;
    text-decoration: none;
}
/* Hide the link that should open and close the 8-bit nav on small screens */

#eight_bit_menu_icon {
    display: none;
}
/*Eliminates the narrow dotted line around the menu icon*/

#eight_bit_menu_icon:active, #eight_bit_menu_icon:focus {
    outline: none;
}
 /* When the screen is less than 500 pixels wide, hide all links, except the menu icon, that opens and closes the menu */
@media only screen and (max-width: 500px) {
  .eightBitNav .dropdown {display: none;}
  #eight_bit_menu_icon {
    display: inline;  
}
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media only screen and (max-width: 500px) {
  .eightBitNav.responsive .dropdown {display: block;}
}

/*The following is for Original CPU links*/

.origNav {
    background-color: white;
    position: relative;
    min-height: 5px;
}
.origNav a {
    color: white;
    text-decoration: none;
}
/* Hide the link that should open and close the 8-bit nav on small screens */

#orig_menu_icon {
    display: none;
}
/*Eliminates the narrow dotted line around the menu icon*/

#orig_menu_icon:active, #orig_menu_icon:focus {
    outline: none;
}
 /* When the screen is less than 500 pixels wide, hide all links, except the menu icon, that opens and closes the menu */
@media only screen and (max-width: 500px) {
  .origNav .dropdown {display: none;}
  #orig_menu_icon {
    display: inline;  
}
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media only screen and (max-width: 500px) {
  .origNav.responsive .dropdown {display: block;}
}


