/* USED FOR THE LAYOUT INDEX.HBS */

@import url(https://fonts.googleapis.com/css?family=Nunito);

/*
 * Globals
 */
* {
  font-family: "Nunito", sans-serif;

}

p {

  text-align: justify;
  margin-left: 10px;
  margin-right: 150px;

}

body {
  height: 100%;
  background-color: #fff;
  background-image: url("../img/RH.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  color: #696969;
  margin: 40px;
  margin-left: 0px;

}


.titulo {
  color: #268DB2;
  text-align: left;
  margin-left: 10px;
  margin-right: 150px;

}

.logo {
  position: absolute;
  margin: 10px;
  left: 0px;
  top: 0px;
}

.footer-copyright {
  margin-left: 57px;
  margin-right: 0px;
}

.redes {
  margin-left: 150px;
}

.animacion {
  border-radius: 4px;
  background-color: #268DB2;
  border: none;
  color: #FFFFFF;
  text-align: center;
  padding: 10px;
  width: 150px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.animacion span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.animacion span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.animacion:hover span {
  padding-right: 25px;
}

.animacion:hover span:after {
  opacity: 1;
  right: 0;
}

.descripcion {
  margin-top: 115px;
}

/*
  * Header
  */
.masthead {
  margin-bottom: 2rem;
}

.masthead-brand {
  margin-bottom: 0;
}


@media (min-width: 40em) {
  .masthead-brand {
    float: left;
  }

  .nav-masthead {
    float: right;
  }
}

/* If the screen size is 601px wide or more, set the font-size of <div> to 80px */
@media screen and (min-width: 601px) {
  div.example {
    font-size: 80px;
  }
}

/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 600px) {
  div.example {
    font-size: 30px;
  }
}