
/* CSS Document */

body {
	margin:0;
  font-family:Helvetica, sans-serif;
	background-color:#fff;
	
}

#stuff{
		padding: 16px;
		margin-top:100px;

}

 a:link {
  color: #69fa00;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: #69fa00;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: black;
  background-color: transparent;
  text-decoration: underline;
}
a:active {
  color: black;
  background-color: black;
  text-decoration: underline;
}


	
.mobile-container {
  max-width: 100%;
  margin: auto;
  background-color: #fff;
  color: black;
  border-radius: 10px;
}

.topnav {
  overflow: hidden;
  background-color: #000;
  position: fixed;
	z-index:500;
	width:100%;
	
	top:0;
	left:0;
	
}

.topnav #myLinks {
  display: none;
}

.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 24px;
  display: block;
	height:45px;/**/
	overflow-y: hidden;
}

.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
	height:45px;
	width:45px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.active {
  background-color: #000;
  color: white;
}

