body {
	margin: 0;
	font-family: sans-serif;
}

header {
	width: 100%;
	background: black;
}

#btn-menu {
	display: none;
}

header label {
	display: none;
	width: 30px;
	height: 30px;
	padding: 10px;
	border-right: 1px solid #fff;
}

header label:hover {
	cursor: pointer;
	/* parece un poco mas oscuro
	 background: rgba(0,0,0,0.3);
	*/
	background: #4A3535;
}

.menu ul {
	margin: 0;
	list-style: none;
	padding: 0;
	display: flex;
	justify-content: flex-end;
}

.menu li {
	text-align: center;
	flex-grow: 1;
	
	//border-right: 1px solid #fff;
}

.menu li li:hover {
	background: #4A3535;
}

.menu li a {
	display: block;
	padding: 15px 20px;
	color: #fff;
	text-decoration: none;
}

@media (max-width:768px) {
	header label {
		display: block;
	}
	
	.menu {
		z-index: 100;
		position: absolute;
		background: #000000;
		width: 70%;
		margin-left: -70%;
	}
	
	.menu li li:hover {
		background: #8B1818;
	}
	
	.menu ul{
		position: relative;
		flex-direction: column;
	}
	
	.menu li {
		border-top: 1px solid #fff;
	}
	
	#btn-menu:checked ~ .menu {
		margin: 0;
	}
}

#contenedor1 {
	margin: 300px;
	margin-top: 20px;
	margin-bottom: 20px;
	display: flex;
	width: 70%;
	background: #fff;
	text-align: center;
	flex-grow: 1;
}

#logo1 {
	flex-grow: 1;
	margin: 0;
	justify-content: center;
}

#logo2 {
	margin-top: 20px;
	flex-grow: 1;
	justify-content: center;
}
