* {
  box-sizing: border-box;
}

body {
  margin: 40;
  background-color: black;
  color: white;
}

/* Style the header */
.header {
  width: 100%;
  float: left;
  display: block;
  text-align: left;
	padding: 10px;
	font-family: Verdana;
	font-size: small;
}

/* Style the header 2 */
.header2 {
  width: 100%;
  float: left;
  display: block;
  text-align: left;
	padding: 10px;
	font-family: Verdana;
	font-size: small;
}


/* Add a black background color to the top navigation */
div.topnav {
  background-color: #333;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
div.topnav a {
  float: left;
  display: block;
  color: #ffffff;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Add an active class to highlight the current page */
div.topnav .active {
  background-color: #808080;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
div.topnav .icon {
  display: none;
}

/* Dropdown container - needed to position the dropdown content */
div.topnav .dropdown {
  float: left;
  overflow: hidden;
}

/* Style the dropdown button to fit inside the topnav */
div.topnav .dropdown .dropbtn {
  font-size: 17px; 
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

/* Style the dropdown content (hidden by default) */
div.topnav .dropdown-content {
  display: none;
  position: absolute;
  background-color: #333;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Style the links inside the dropdown */
div.topnav .dropdown-content a {
  float: none;
  color: white;
  padding: 12px 16px;
  display: block;
	text-decoration: none;
  text-align: left;
}

/* Add a dark background on topnav links and the dropdown button on hover */
div.topnav .topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #808080;
  color: white;
}

/* Add a grey background to dropdown links on hover */
div.topnav .dropdown-content a:hover {
  background-color: #808080;
  color: black;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
div.topnav .dropdown:hover .dropdown-content {
  display: block;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  div.topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
 div.topnav a.icon {
    float: right;
    display: block;
  }
}

/* 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 screen and (max-width: 600px) {
  div.topnav.responsive {position: relative;}
  div.topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  div.topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  div.topnav.responsive .dropdown {float: none;}
  div.topnav.responsive .dropdown-content {position: relative;}
  div.topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}


/* Create responsive table */
1able {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}

table tr {
  background-color: black;
  border: 1px solid black;
  padding: .35em;
}

table th,
table td {
  padding: .625em;
  text-align: center;
}

table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media screen and (max-width: 600px) {
  table {
    border: 0;
  }

  table caption {
    font-size: 1.3em;
  }
  
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  table tr {
    border-bottom: 3px solid black;
    display: block;
    margin-bottom: .625em;
  }
  
  table td {
    border-bottom: 1px solid black;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  
  table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  table td:last-child {
    border-bottom: 0;
  }
}

	
/* Style info1 content */

  .info1 {
    width: 100%;
		padding: 10px;
		font-family: Verdana;
		font-size: small;
  }



/* Style info2 content */
.info2 {
  width: 100%;
  float: left;
  display: block;
  text-align: left;
	padding: 10px;
	font-family: Verdana;
	font-size: small;
}


/* Create three unequal columns that floats next to each other */
.column {
  float: left;
  padding: 10px;
 }

.left {
  width: 15%;
}

.middle {
  width: 60%;
  border: 2px solid grey;
}

.right {
  width: 25%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}


/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 640px) {
  .column {
    width: 100%;
                padding: 10px;
		font-family: Arial,Helvetica;
		font-size: medium;		
  }
}

/* Responsive layout  */
@media screen and (max-width: 640px) {
  .info3 {
    width: 100%;
		padding: 10px;
		font-family: Verdana;
		font-size: small;
  }
}


/* Style the footer */
footer {
  width: 100%;
  padding: 10px;
  text-align: center;
  font-family: Verdana;
	font-size: x-small;
}



/* Horizontal Line Break */
hr {
  width: 100%; 
  max-width: 100%;
  display: block;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  margin-left: auto;
  margin-right: auto;
  border-style: inset;
  border-width: 1px;
}


/* Responsive Image size */
.responsive {
  max-width: 100%;
	max-height: 100%;
	  
  
}



/* unvisited link */
a:link {
  color: red;
}

/* visited link */
a:visited {
  color: purple;
}

/* mouse over link */
a:hover {
  color: dodgerblue;
}

/* selected link */
a:active {
  color: green;
}