@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: #d9d9d9;
}
div{
	box-sizing: border-box;
}

img{
	width: 100%;
}

aside{
	background-color: greenyellow;
	position: fixed;
	top: 5%;
}

aside a{
	font-size: 2em;
	font-weight: bold;
	text-decoration: none;
	color: black;
	text-transform: uppercase;
}

header {
	background-image: url(img/moodboard.png);
	background-size: cover;
	background-repeat: no-repeat
}


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;
	
}

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;
}

footer{
	background-color: black;
	color: greenyellow;
	padding-top: 3em;
	padding-bottom: 3em;
	text-align: center;

}

footer h3{
	font-size: 1.2em;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	padding: 1.5em 0;
	font-weight: bold;
}

p{
	font-size: 1.2em;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}

form {
    /* Sólo para centrar el formulario a la página */
    margin: 0 auto;
    width: 100%;
    /* Para ver el borde del formulario */
    padding: 0em;
    border: 0px;
    border-radius: 0em;
	background-color: black;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-weight: bold;
}

form div + div {
    margin-top: 1em;
}

label {
    /* Para asegurarse que todos los labels tienen el mismo tamaño y están alineados correctamente */
    display: inline-block;
    width: 90px;
    text-align: right;
}

input, textarea {
    /* Para asegurarse de que todos los campos de texto tienen las mismas propiedades de fuente
       Por defecto, las areas de texto tienen una fuente con monospace */
    font: 1em sans-serif;

    /* Para darle el mismo tamaño a todos los campos de texto */
    width: 15em;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    /* Para armonizar el look&feel del borde en los campos de texto */
    border: 1px solid #999;
	background-color: gray;
}

input:focus, textarea:focus {
    /* Para dar un pequeño destaque en elementos activos*/
    border-color: #000;
	
}

textarea {
    /* Para alinear campos de texto multilínea con sus labels */
    vertical-align: top;

    /* Para dar suficiente espacio para escribir texto */
    height: 5em;

    /* Para permitir a los usuarios cambiar el tamaño de cualquier textarea verticalmente
        No funciona en todos los navegadores */
    resize: vertical;
	background-color: gray;
}

.button {
    /* Para posicionar los botones a la misma posición que los campos de texto */
    padding-left: 90px; /* mismo tamaño a todos los elementos label */
}
button {
    /* Este margen extra representa aproximadamente el mismo espacio que el espacio
       entre los labels y sus campos de texto */
    margin-left: .5em;
	margin-top: 1em;
	background-color: greenyellow;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-weight: bold;
	height: 2.5em;
}

.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;
}

@media screen and (orientation:portrait){
	.tres-columnas {width:100%;}
	.margen-tres-columnas{margin-left: 0;}
	ul li{display: block; padding: 0.5em 0em}
	form{width: 100%;}
}

.padding-top{
	padding: 13em 2em 2em 2em;
}






























