/*
 * Ingresa el CSS del proyecto en este archivo
 */

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  /* Establece la fuente de Google aquí */
  font-family: 'Raleway', sans-serif;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.71429;
  background-color: #fff;
}

nav {
  position: fixed;
  background: white;
  width: 100%;
  right: 0;
}

img {
  vertical-align: middle;
}

a {
  color: #373B47;
  text-decoration: none;
  margin-top: 10px;
}

a:hover {
  color: #E95853;
}

.link {
  font-weight: 700;
}

.logo {
  height: 70px;
}
#home {
  background-image: url(../assets/images/bg-home.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  height: 550px;
  padding: 110px 70px;
}

.text-home{
  font-size: 50px;
}

.btn-home{
  background: #2ECC71; /*Texto*/
  color: #FFF; /*Fondo*/
  padding: 11px 20px;
  border-radius: 1px;
  font-size: 14px;
}

#services{
  background-color: #F17C72;
  color: #FFF;
  padding: 70px 7px;
}

#work {
  color: #000;
  padding: 70px 7px;
}

footer {
  background-color: #262626;
  color: white;
}
