/*COMENTARIO*/
* {
  box-sizing: border-box;
}

body {
	background-color: #F3F3F2;
	font-family: 'Roboto', sans-serif;
	color: #333;
	font-size: 1.25rem;
	line-height: 1.6em;
	margin: 0;
	text-align: left;
}

.container {
	width: 80%;
	max-width: 850px;
	margin: 0 auto;
}

.header {
	margin-bottom: 0;
	position: relative;
	padding: 0;
	left: 0;
	top: 0;
	bottom: 0;
	width: 100%;
}

.header img {
  width: 100%;
  height: auto;
  margin-left: 0;
  margin-right: 0;
}

h1 {
	font-size: 1.5rem;
	font-family: 'Cardo', 'Sans serif';
}

h2 {
	font-size: 1.3rem;
	font-family: 'Cardo', 'Sans serif';
	margin-top: 10px;
	font-weight: 100;
}

h3 {
	font-size: 1.1rem;
	text-align: justify;
	font-weight: 100;
}

aside {
  position: fixed;
  top: 60px;
  left: 20px;
  width: 200px;
  height: fit-content;
  display: none;
  z-index: 1000;
}

    aside a {
        margin: 10px 0;
        text-decoration: none;
        color: #333;
        font-weight: 500;
    }

.casita {
	text-align: center;
}

footer {

}

.logos {
  width: 80%;
  max-width: 600px;
  height: auto;
  display: block;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}

/*FOOTER*/
footer {
  background-color: black;
  padding: 9px 0;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  align-items: center;
  margin-top: 2rem;
  font-size: 1.25rem;
  line-height: 1.7em;
}

@media only screen and (max-width: 768px) {

h1 {
	font-size: 1.2rem;
	font-family: 'Cardo', 'Sans serif';
}

h2 {
	font-size: 1.1rem;
	font-family: 'Cardo', 'Sans serif';
	margin-top: 10px;
	font-weight: 100;
}

h3 {
	font-size: 1rem;
	text-align: justify;
	font-weight: 100;
}

aside{
    display: none !important;
}

}