<style>
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;			
        }

        header {
            background-color: #000000;
            color: #fff;
            text-align: center;
            padding: 7px;

        }

        section {
            max-width: 800px;
            margin: 20px auto;
            padding: 20px;
            background-color: #fff;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        h1, h2, h3 {
            color: #3498db;
        }
		h1 {
			text-align: center;
		}

        ul {
            list-style-type: none;
            padding: 0;
        }

        ul li {
            margin-bottom: 10px;
        }

        a {
            color: #3498db;
            text-decoration: none;
            font-weight: bold;
        }

        a:hover {
            text-decoration: underline;
        }

		img {
                    max-width: 100%;
                    height: auto;
                    display: block;
                    margin: auto;             		
		}
/* Ocultar el menú por defecto */
/*#menu {
  display: none;
}*/

/* Mostrar el menú después del head */
@media (min-width: 768px) {
  #menu {
    display: block;
    /*position: fixed;*/
    top: center;
    left: center;
    width: 100%;
    z-index: 10;
  }
}

/* Estilos del menú */
#menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#menu ul li {
  display: inline-block;
  padding: 10px;
  margin: 10px;
  background-color: #000000;
}

#menu ul li a {
  text-decoration: none;
  color: #FFFFFF;
}

#menu ul li a:hover {
  color: #F90004;
}

#menu ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
}

#menu ul li:hover ul {
  display: block;
}
</style>
