/* Estilos generales */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Estilos del encabezado */
header {
  position: fixed;
  top: 0;
  width: 100%;
    
  /*position: relative;
    text-align: center;*/
}

#headerImage {
    width: 100%;
    height: 7em;
}


#headerText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

header h1 {
       font-size: 2.1rem;
	color: white;
	font-family: 'Impact', sans-serif;
        font-style: italic;
        /*margin-top: 10*/
        margin-bottom: 0
	/*text-align: left;*/
}

header h6 {
    font-size: .5rem;
	color: white;
    margin-top: 0;
text-align: center;
}

/*h1 {
  margin: 10;
}*/

/* Estilos del menÃº */
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav li {
  display: inline;
  margin-right: 10px;
}

nav a {
  text-decoration: none;
  color: #333;
}

/* Estilos del cuerpo */
main {
  margin-top: 7rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
}

section {
  flex-basis: 300px;
  margin: 10px;
  padding: 20px;
  background-color: #d1ebad21;
}

section h2 {
  margin-top: 0;
  text-align: center;
}

.menu-icon {
  top:2.6rem;
  font-size: 1.9rem;
  cursor: pointer;
  text-align: left;
  position: absolute;
  color: white;

}

#nav-menu {
  display: none;
}

.side-menu {
  display: none;
  position: fixed;
  z-index:150;
  top: 0;
  left: 0;
  width: 25%;
  height: 100%;
  background-color: #374f14cf;
  color: white;
  padding: 20px;
}

.side-menu ul {
  list-style-type: none;
  padding: 0;
}

.side-menu a {
  color: white;
  text-decoration: none;
}

@media (min-width: 600px) {
  .menu-icon {
    display: block;
  }

  #nav-menu {
    display: block;
  }
}

/* Estilos del pie de pÃ¡gina
footer {
  background-color: red;
  color: white;
  padding: 20px;
  text-align: center;
}

footer p {
  margin: 5px 0;
}*/
footer {
    position: relative;
    text-align: center;
}

#footerImage {
    width: 100%;
    height: 6rem;
}

#footerText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

footer p {
    font-size: 1rem;
	color: white;
	font-family: 'Arial', sans-serif;
	/*text-align: left;*/
}
