@charset "utf-8";
/* CSS Document */

*
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

body{
	background-color: grey;
	font-size: x-small;
}
div{
	box-sizing: border-box;
}

img{
	width: 100%;
}


header {
	background-image: none;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: white;
}


nav{
	background-color: black;
	padding-top: 1em;
	padding-bottom: 1em;
}

ul{
	text-align: center;

}

ul li {
	list-style-type: none;
	display: inline;
	padding-right: 1.5em;
	padding-left: 1.5em;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-weight: bold;
}

ul li a {
	text-decoration: none;
	color: greenyellow;
	font-size: 1.2em;
	opacity:inherit;
}

h1 {
	font-size: 4em;
	font-weight: 700;
	text-align: center;
	padding: 4em 0 4em 0;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	
}

h2{
	background-color: black;
	padding: 0.5em 1em;
	font-size: 1.2em;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-weight: bold;
	color: greenyellow;
	text-align: center;
}


p{
	font-size: 2em;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}


.dos-columnas{
	width: 50%;
}

.tres-columnas{
	width: 33.3333333333%;
}

.limpiar-float{
	clear: both;
}

.float{
	float: left;
}

.margen-tres-columnas{
	margin-left: 33.3333333333%;
}

.padding-textos{
	padding: 2em;
}

.tres-columnas-doble{
	width: 66.6666666667;
}

.padding-normal{
	padding-bottom: 2em;
}



.padding-top{
	padding: 13em 2em 2em 2em;
}


.contenedor {
	background: pink;
	display: flex;
	flex-direction: row;
}

.hijo {
	background:#FFCCEC;
	padding: 20px;
	margin: 30px;
	font-size: 10px;
}


#menu_on{
	display: inline-block;
	width:30px;
	height: 20px;
	position: relative;
	z-index: 2;
	padding-left: 0em;

}
 
#menu_on span{
	width: 100%;
	height: 4px;
	border-radius: 4px;
	display: block;
	position: absolute;
	background: pink;
	transition: all 0.25s ease;
	transform-origin : 0px 100%;
	
}
 
#menu_on span:nth-child(2){
	top: calc(50% - 2px);
	background: pink;
}
 
#menu_on span:nth-child(3){
	bottom: 0;
	background: pink;
}

nav{
	position: fixed;
	top: 0;
	bottom: 0;
	left:-300px; 
	width: 300px;
	z-index: 1;
	padding: 90px 30px 30px;
	background: #2E2E2E;
	opacity: 0;
	transition: all 0.75s ease;
	font-size: 1.2em;
	overflow-y: auto;
}

nav a{
	display:block;
	text-decoration: none;
	padding: 10px;
	color: rgba(255,255,255,0.75);
	border-bottom: 1px solid rgba(255,255,255,0.2);
	transition: all ease 0.25s;
}
 
nav a:hover{
	color: rgba(255,255,255,1);
	border-bottom-color:rgba(255,255,255,0.4);
}


.visible_menu span:nth-child(1){
	transform: rotate(45deg) translate(-2px,1px); 
}
 
.visible_menu span:nth-child(2){
	opacity: 0;
}
 
.visible_menu span:nth-child(3){
	transform: rotate(-45deg) translate(-3px,3px); 
}


.visible_menu nav{
	left: 0;
	opacity: 50%;
}


.visible_menu #content{
      transform: translateX(260px);
}


@media screen and (orientation:portrait){
	.contenedor{
		flex-direction: column;}
	h1{font-size: 6em}
	nav{width: 300px}

	
	
}


