* {box-sizing: border-box;}
h {font-family: verdana;}
p {font-family: verdana;}

body {
	background-color: black;
	font-family: VT323, sans-serif;
	}

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

header {
	background-color: green;
	padding-top: 30px;
	padding-bottom: 30px;
	text-align: center;
	width: 100%;
	height: 100%; 
	font-size: 20px;
	color: white;
	border: 6px solid white;
	}

artleft {
	float: left;
	padding: 20px;
	width: 50%;
	height: 100%; 
	color: black;
	background-color: #ffffff;
	border: 12px solid black;
	}

artright {
	float: left;
	padding: 20px;
 	width: 50%;
	height: 100%; 
	color: black;
  	background-color: #ffffff;
    	border: 12px solid black;
	}

footer {
  	background-color: green;
  	padding: 10px;
  	text-align: center;
  	color: white;
    	border: 6px solid white;
    	border-radius: 0.0rem;
	}


a:link, a:visited {
  	background-color: green;
	font-family: verdana;
  	color: white;
  	padding: 16px;
	margin: 2px;
  	text-align: center;
  	text-decoration: none;
  	display: inline-block;
  	font-size: 16px;
	border: 3px solid black;
    	border-radius: 0.3rem;
	}

a:hover, a:active {
  	background-color: #44CC44;
	}

.dropbtn {
  	background-color: green;
  	color: white;
  	padding: 16px;
  	font-size: 16px;
    	border: 3px solid black;
    	border-radius: 0.3rem;
  	cursor: pointer;
	}

.dropdown {
  	position: relative;
  	display: inline-block;
	}

.dropdown-content {
  	display: none;
  	position: absolute;
  	background-color: black;
  	min-width: 160px;
  	box-shadow: 0px 8px 16px 0px rgba(0,0,0,1);
  	z-index: 1;
    	border-radius: 0.3rem;
	}

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

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

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

.dropdown:hover .dropbtn {background-color: #44CC44}

button{
	background-color: green;
	font-family: verdana;
	color: white;
	padding: 16px;
	margin: 2px;
	font-size: 16px;
	cursor: pointer;
	}

@media (max-width: 600px) {
	artleft, artright {
	width: 100%;
	height: auto;
	}


