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

/* Imagen Responsive Basica */
img {
  width: 100%;
  height: auto;
}
/* Responsive Images en Columnas */
.two-columns {
  width: 48%;
  display: inline-block;
  margin-left:7px;
  margin-right:0px;
}
.three-columns {
  width: 48%;
  display: inline-block;
}
/* Responsive Breakpoints  */

.breakpoint { /* 1 columna para smartphones */
  max-width: 100%;
  display: inline-block;
  margin-bottom:0.8em;
  
}
@media (min-width: 420px) { /* 2 columnas para tablets */
  .breakpoint {
    max-width: 48%;
	margin-left: 7px;

  }
  
  }
@media (min-width: 390px) and (max-width: 580px) { /* 2 columnas para tablets */
  .breakpoint {
    max-width: 47%;
	margin-left: 7px;

  }
}
@media screen and (max-width: 1000px) and (min-width: 700px) { /* 4 columnas para grandes dispositivos*/
  .breakpoint {
    max-width: 48%;
	margin-left:7px;
	margin-bottom: 2px;
	margin-left:2.1ems;
  }
}
/* Full-width Responsive  */
.full {
  width: 100%;
}

/*  Basico */
body {
	color: #090909;
	background-color: #ffffff;
	font-family: "Oxygen", sans-serif;
	font-size: 18px;
	font-style: normal;
	line-height: 25px;
	font-weight: 400;
	font-variant: normal;
}
/* Tipografias */
h1, h2, h3 {
  font-weight: 700;
}
h2, h3 {
  margin: 40px auto 20px auto;
} 
h1 {
	font-size: 25px;
	line-height: 10px;
	font-weight: 900;
	letter-spacing: 2px;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: auto;
}
h2 {
  font-size: 28px;
  line-height: 34px;
}
h3 {
  font-size: 22px;
  line-height: 26px;
}
p, .button {
  margin: 5px auto 20px auto;
}
a {
  color: #3185fc;
  text-decoration: none;
  font-weight: 700;
}
a:hover {
  color: #1978fc;
}
/* Layout */
.container {
	position: relative;
	width: 100%;
	max-width: 960px;
	text-align: center;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: 3px;
	float: none;
}
header {
	position: relative;
	width: 100%;
	color: #fff;
}
header .container {
	padding-top: 3px;
	padding-bottom: 5px;
}
section {
  margin: 60px auto;
}
/* Clases especiales */
.button {
  display: block;
  margin: 0 auto;
  padding: 10px;
  width: 96%;
  max-width: 200px;
  text-align: center;
  background: #3185fc;
  color: #e3eefc;
  text-decoration: none;
  transition: background-color 0.2s ease-in, color 0.2s ease-in;
}
.button:hover {
  background: #1978fc;
  color: #fff;
  transition: background-color 0.2s ease-out, color 0.2s ease-out;
}
.instructions {
  width: 100%;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 60px;
  background: #cce3ed;
  color: #89043d;
  font-weight: 700;
}
#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;
  }
}
