<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<title>menu</title>
	<style type="text/css" type="text/css" href="css/estilo.css">
	  	
	  	h1{
			text-transform: uppercase;
		}
		.estatico {
  			position: sticky;
  			border: 3px solid black;
  			top: 0;
  			overflow: hidden;
  			background-color: #333;
			}
	

		ul{
			list-style-type: none;
			margin: 0;
			padding: 0;
			background: black;
			overflow: hidden;
			
		}
		li{
			float: left;
			
		}
		li a{
			text-align: center;
			padding: 14px 16px;
			text-decoration: none;
			color: white;
			display: inline-block;
			text-transform: uppercase;
		}
		li a:hover{
			background-color: orange;
		}
		.activa{
			background: blue;
			text-transform: uppercase;
		}
		hr{
			
			background: red;
		}

		</style>
</head>
<body>

</body>
</html>