	@import "https://fonts.googleapis.com/css?family=Press%20Start%202P";

* {
  margin: 1%;
  padding: 1%;
}
header {
	align-items: center;
font-family: 'Press Start 2P';
color: #c71585;}
	
	body {
	background-color: #221;}
	
	
	h1 {
		text-align: center;
		color: #c71585;}
		
	h2 {
	text-align: center;
	color: #c71585;}
		
	ul {
	text-align: center;}
	
	article {
		font-family: 'Press Start 2P';
		color: #4FAF44;
		border: 3px solid #c71585;
		border-style: inset groove ridge outset;
		padding: 10px;
		width: 800px;
		border-radius: 10px;
		overflow-anchor: auto;
		margin: 5px auto 5px auto;
		-moz-border-radius: 10px;
	-webkit-border-radius: 10px;}

	

.dropdown {
  position: relative;
}

/* Style the dropdown button */
.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 10px;
  font-family: 'Press Start 2P';
  border: none;
  cursor: pointer;
}

/* Dropdown content */
.dropdown-content {
  display: none;
  font-family: 'Press Start 2P';
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

/* Links inside dropdown content */
.dropdown-content a {
  color: black;
    font-size: 8px;
  font-family: 'Press Start 2P';
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #f1f1f1
}

/* Show the dropdown content on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change background color of dropdown button on hover */
.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}