/* ------------------ Colors ------------------- */
/* ------------------ Fonts -------------------- */
/* -------------- Grid & screens --------------- */
.social-buttons {
  font-size: 1.4rem;
  margin-top: 50px;
}
.social-buttons a {
  display: inline-block;
}
.social-buttons a + a {
  margin-left: 5px;
}
.social-buttons a .fab {
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  color: #999999;
}
.social-buttons a:hover .fa-instagram {
  color: #c13584;
}
.social-buttons a:hover .fa-deviantart {
  color: #05cc47;
}
.social-buttons a:hover .fa-behance {
  color: #1769ff;
}
.social-buttons a:hover .fa-artstation {
  color: #13aff0;
}
.social-buttons a:hover .fa-linkedin-in {
  color: #0077b5;
}
.social-buttons a:hover .fa-youtube {
  color: #ff0000;
}
.social-buttons a:hover .fa-dribbble {
  color: #ea4c89;
}
.social-buttons a:hover .fa-github {
  color: #333;
}
.social-buttons a:hover .fa-codepen {
  color: #0ebeff;
}
.social-buttons a:hover .fa-stack-overflow {
  color: #f48024;
}

body {
  max-width: none;
}

@-webkit-keyframes home-text {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  75% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 1;
  }
}

@keyframes home-text {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  75% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes home-image {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  80% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes home-image {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  80% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
main {
  background-color: #fafafa;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
}
@media only screen and (max-width: 1199px) {
  main {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    min-height: 100vh;
    height: auto;
  }
}
main::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  background-image: url(../img/bg-home.jpg);
  background-size: auto 110%;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  -webkit-animation: home-image 0.8s ease-out 1.8s 1 forwards;
          animation: home-image 0.8s ease-out 1.8s 1 forwards;
}
@media only screen and (min-width: 1600px) {
  main::after {
    background-position: 70% 100%;
  }
}
@media only screen and (max-width: 1199px) {
  main::after {
    position: relative;
    height: 400px;
    background-image: url(../img/bg-home-sm.jpg);
    background-size: auto 100%;
    background-position: center bottom;
  }
}

.intro {
  width: 50%;
  margin-left: 50px;
  max-width: 640px;
  z-index: 1;
  opacity: 0;
  -webkit-animation: home-text 1s ease-in-out 0.8s 1 forwards;
          animation: home-text 1s ease-in-out 0.8s 1 forwards;
}
@media only screen and (max-width: 1440px) {
  .intro {
    width: 40%;
  }
}
@media only screen and (max-width: 1199px) {
  .intro {
    width: auto;
    max-width: 600px;
    text-align: center;
    margin-left: 0;
    padding: 75px 50px 0;
  }
}
@media only screen and (max-width: 767px) {
  .intro {
    max-width: 500px;
    padding: 50px 25px 0;
    margin-top: 25px;
  }
}
.intro p, .intro h1 {
  text-align: left;
}
@media only screen and (max-width: 1199px) {
  .intro p, .intro h1 {
    text-align: center;
  }
}