/* CSS Reset */
* { margin: 0; padding: 0; }

/* Imagen Responsive Basica */
img {
  width: 100%;
  height: auto;
}

/* Responsive Breakpoints  */

.breakpoint { /* 1 columna para smartphones */
  max-width: 100%;
  display: inline-block;
}
@media (min-width: 420px) { /* 2 columnas para tablets */
  .breakpoint {
    max-width: 48%;
  }
}
@media (min-width: 760px) { /* 4 columnas para grandes dispositivos*/
  .breakpoint {
    max-width: 24%;
  }
}
/* Full-width Responsive  */
.full {
  width: 100%;
}

/*  Basico */
body {
  font: normal 400 18px/25px "Oxygen", sans-serif;
  color: #484848;
  background: #fff;
}

/* Layout */
.container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
header {
  position: relative;
  width: 100%;
  background: #9ed0e6;
  color: #fff;
}
header .container {
	padding-top: 50px;
  }
/* Distancia en margen superior de la foto */  
section {
  margin: 5px auto;
}
#credits {
  color: #959595;
}
/* Media Queries */
@media (max-width: 400px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 28px;
    line-height: 34px;
  }
  h2 {
    font-size: 22px;
    line-height: 26px;
  }
  h3 {
    font-size: 18px;
    line-height: 22px;
  }
}