/*FONTS*/

@import url('https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700');

/*ANIMATIONS*/

@keyframes rotate360 {
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes move-bg-left {
  100% { background-position: right; }
}
@keyframes glow {
  0% {
    -webkit-filter: drop-shadow(0 0 15px rgba(154, 212, 188, 0.8));
    filter: drop-shadow(0 0 15px rgba(154, 212, 188, 0.8));
  }
  50% {
    -webkit-filter: drop-shadow(0 0 15px rgba(154, 212, 188, 0.2));
    filter: drop-shadow(0 0 15px rgba(154, 212, 188, 0.2));
  }
  100% {
    -webkit-filter: drop-shadow(0 0 15px rgba(154, 212, 188, 0.8));
    filter: drop-shadow(0 0 15px rgba(154, 212, 188, 0.8));
  }
}

/*BASIC STYLES*/

html {
  font-family: 'Oswald', sans-serif;
  font-size: 62.5%;
}
body {
  color: #fff;
  overflow: hidden;
  background-image: url('../images/background.jpg');
  background-size: cover;
}
h1, h2, h3, h4, p {
  z-index: 2000;
}

/*CONTENT*/

.content {
  position: absolute;
  top: 0;
  left: 0;
  position: relative;
  z-index: 100;
}
.content .layer {
  position: absolute;
  width: 100%;
  height: 100vh;
}
.content .description {
  margin-top: 10rem;
  z-index: 200;
}
.content .description .wrap {
  top: 10%;
  right: 15%;
  position: relative;
}
.content .name img {
  position: absolute;
  top: 3rem;
  right: -100px;
  width: 1240px;
}
.content .description h1 {
  font-size: 7.2rem;
  font-weight: 400;
  text-transform: uppercase;
  text-align: right;
  animation: glow 5s linear infinite;
}
.content .description h2 {
  color: #00f5fd;
  font-size: 2.4rem;
  font-weight: 300;
  text-transform: uppercase;
  text-align: right;
}
.content .description h3 {
  color: #fff;
  font-size: 7.2rem;
  font-weight: 400;
  text-transform: uppercase;
  text-align: right;
  animation: glow 5s linear infinite;
}
.content .description p, .mobile p {
  color: #00f5fd;
  font-size: 2.4rem;
  line-height: 3rem;
  font-weight: 300;
  text-transform: uppercase;
  text-align: right;
}
.content .wrap p:first-of-type {
  margin-top: 3rem;
}
.content .description p span, .mobile p span {
  display: inline-block;
  margin-left: 10px;
  text-align: left;
  width: 20%;
  color: #fff;
  vertical-align: top;
}
.content .description p.stack {
  margin-top: 10px;
}
.content .skills {
  margin-top: 10rem;
  position: relative;
}
.content .skills img {
  position: absolute;
  top: 1rem;
  right: -10rem;
  width: 910px;
}
.content .skills p span {
  /*font-weight: 600;*/
}
.content .skills p span > em, .mobile p span > em  {
  color: #4e6063;
}
.content .photo img {
  max-width: 722px;
  min-width: 360px;
  width: 40vw;
  position: absolute;
}
.content .circle-1 img {
  max-width: 722px;
  min-width: 360px;
  width: 40vw;
  position: absolute;
  animation: rotate360 10s linear infinite;
}
.content .circle-2 img {
  max-width: 715px;
  min-width: 360px;
  width: 40vw;
  position: absolute;
  animation: rotate360 25s linear infinite;
}
.content .circle-3 img {
  max-width: 720px;
  min-width: 360px;
  width: 40vw;
  position: absolute;
  animation: rotate360 40s linear infinite;
}

/*BACKGROUND PARALLAX*/

.content .small-01 img {
  position: absolute;
  left: 3%;
  bottom: 2%;
}
.content .small-02 img {
  position: absolute;
  right: -15%;
  bottom: -5%;
}
.content .small-03 img {
  position: absolute;
  right: 3%;
  top: 5%;
}
.content .small-04 img {
  position: absolute;
  top: 3%;
  left: 2%;
}

/*GFX*/

.gfx {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
}
.gfx .adds {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-size: 200% auto;
  background-repeat: no-repeat;
  background-position: left;
}
.gfx .add-02 {
  background-image: url('../images/background-add-02.png');
  animation: move-bg-left 30s linear infinite;
}
.gfx .add-03 {
  background-image: url('../images/background-add-03.png');
  animation: move-bg-left 20s linear infinite;
}
.gfx .add-04 {
  background-image: url('../images/background-add-04.png');
  animation: move-bg-left 15s linear infinite;
}

/*MOBILE*/

body {
  overflow-y: scroll;
  padding: 5rem 0;
}
.mobile {
  display: none;
}
.mobile .photo {
  text-align: center;
  margin-bottom: 7rem;
}
.mobile .photo img {
  max-width: 400px;
  width: 70%;
  height: auto;
}
.mobile .text {
  text-align: center;
}
.mobile .text h1 {
  margin-bottom: 2rem;
  font-size: 7.2rem;
  text-transform: uppercase;
}
.mobile .text h2 {
  color: #00f5fd;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 2.4rem;
  margin-bottom: .5rem;
}
.mobile .text h3 {
  margin-top: 5rem;
  margin-bottom: 2rem;
  font-size: 4.8rem;
  text-transform: uppercase;
}
.mobile .text p {
  font-size: 2.4rem;
  line-height: 3rem;
  text-align: center;
}
.mobile .text p span {
  width: auto;
  margin: auto;
}

/*CUSTOM STYLES*/

.valign {
  margin-top: -8rem;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}
