 .container{
  display: flex;
  justify-content: space-evenly; /* Alinea el logo a la izquierda y el menú a la derecha */
  align-items: center; /* Centra verticalmente */
}

 body {
			font: 20px arial;
			color:#050101;
			background-color:#FFFFFF;
		}
	
	a {
			color: #050101;
		}

	ul { /* all lists... */
			padding: 0;
			margin: 0;
			color:#050101;
			background-color:#36A8FF;
		 }
	
		li { /* all list items... */
			display: inline; /* set the list items left-to-right */
			position: relative;	/* set the origin for child boxes to be positioned from */
			font-size: large;
			word-spacing: 100px;
		}

		ul ul { /* lists within lists... */
			position: absolute; /* place them over the top of everything */
			left: 0; /* align them to the left of the parent list item  - necessary for some older browsers */
			top: 100%;
		}
