/* Para móviles y en general */

html {
  box-sizing: border-box;
  font-size: 62.5%; / esto hace que 1rem=10px
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 2;
}


/* Globales */

.contenedor{
  max-width: 160rem;
  /*width: 95%;*/
  margin: 0 auto;
}

h1, h2, h3, h4 {
  font-family: 'PT Sans', sans-serif;
}

h1 {
    font-size: 4.2rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.6rem;
}

h4 {
    font-size: 2.4rem;
}

p {
  font-size: 1.8rem;
}

img {
  max-width: 100%;
}

a:link, a:visited, a:active {
  text-decoration: none;
}

/** Utilidades **/
.centrar-texto {
  text-align: center;
}
.no-margin{
  margin: 0;
}

/** Header **/
@media (min-width:768px){
  .barra {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.site-header {
  background-image: url(../img/composing.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.site-header a {
  color: #ffffff;
  text-decoration: none;
}
.navegacion a:hover {
  color: #f71559;
}
.site-header h1 {
  text-align: center;
}
.logo {
  max-width: 50%;
  display: block;
  margin: auto;
}
@media (min-width:768px){
  .logo {
    max-width: 50%;
  }
}

/** Navegación **/

.navegacion a {
  text-align: center;
  display: block;
  font-size: 2rem;
  color: white;
  text-decoration: none;
  font-weight: bold;
}
@media (min-width:768px){
  .navegacion a {
    display: inline;
    margin-right: 2rem;
    font-size: 2.4rem;
  }
}

/** header texto **/
.texto-header {
  color: #ffffff;
  text-align: center;
  margin-top: 5rem;
}
@media (min-width:768px){
  .texto-header {
    padding-bottom: 5rem;
  }
}
/** Main **/
.intro {
  weight: 3rem;
  width: 95%;
}
@media (min-width:768px){
  .intro {
    weight: 5rem;
  }
}
.texto-intro {
  text-align: center;
  color: #388dc9;
}
@media (min-width:768px){
  .texto-intro {
    font-size: 3.4rem;
  }
}

.main {
  margin: 5px 5px;
  text-align: justify;
  padding-top: 5rem;
  width: 95%;
}
@media (min-width:768px){
  .main {
    margin: 15px 15px;
    max-width: 100rem;
    width: 95%;
    margin: 0 auto;
  }
}
.texto-resaltado {
  color: #f71559;
}

.youtube {
  display:block;
  margin: auto;
  width: 360;
  height: 202.5;
}
@media (min-width:560px){
  .youtube {
    width: 560;
    height: 315;
  }
}
@media (min-width:768px){
  .youtube {
    width: 560;
    height: 315;
  }
}
.pulsa {
  text-align: center;
}
.disponible {
  display: flex;
  justify-content: center;
}
.android {
  padding-right: 5px;
}
.ios {
  padding-left: 5px;
}
.centrar {
  text-align: center;
}
.udemy {
  font-size: 2.2rem;
  color: orange;
}
/** Footer **/

.footer {
  background-color: black;
  padding: 3rem;
  margin-top: 4rem;
  font-family:'PT Sans', sans-serif;
  text-align: center;
}
.letra-footer {
  color: white;
}
