* {
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
}

canvas {
  position: absolute;
  /*background-color: #282828;*/
  background-color: #1ea0fc;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

nav ul {
  position: fixed;
  top: -50px;
  transition: top 0.3s;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: 0;
  background-color: rgba(40, 40, 40, 0.8);
}
nav ul i {
  margin: 10px 0;
  margin-right: 5%;
}
nav ul .home {
  background-color: rgba(16, 237, 177, 0.8);
}
nav ul .about {
  background-color: rgba(56, 192, 255, 0.8);
}
nav ul .work {
  background-color: rgba(255, 12, 12, 0.8);
}
nav ul .contact {
  background-color: rgba(255, 149, 12, 0.8);
}
nav li {
  display: inline-block;
  margin: 0;
}
nav li a {
  color: #FFF;
}
nav li a:hover {
  color: #CCC;
  text-decoration: none;
}
nav .sections {
  color: #FFF;
  font-family: "Roboto", sans-serif;
  width: 25%;
  text-align: center;
  z-index: 1;
}
nav .sections a {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 600px) {
  nav .sections {
    font-size: 15px;
  }
  nav .sections span {
    display: none;
  }
}

#home {
  display: inline-block;
  color: #FFF;
  text-align: center;
  width: 100vw;
  min-height: 100vh;
}
#home h1 {
  font-size: 50px;
  font-family: "Roboto", sans-serif;
  text-shadow: 3px 3px rgba(0, 0, 0, 0.5);
  margin-top: 40vh;
}
#home h2 {
  font-size: 25px;
  font-family: "Roboto", sans-serif;
  text-shadow: 3px 3px rgba(0, 0, 0, 0.5);
}
#home .icons {
  display: inline-block;
}
#home .icons p {
  font-family: "Archivo Black", sans-serif;
  margin-top: 20px;
  visibility: hidden;
}
#home .icons:hover p {
  visibility: visible;
}
#home .btn {
  color: #FFF;
  background: linear-gradient(to bottom right, #f4a142, #f44242);
  width: 80px;
  height: 80px;
  font-size: 40px;
  border: 2px solid #FFF;
  border-radius: 50%;
  margin: 0 1em;
  margin-top: 5%;
  padding-top: 10px;
  outline: none;
  transition: all 0.2s ease-in-out;
}
#home .btn:hover {
  transform: scale(1.3);
}
#home .to-about {
  position: absolute;
  bottom: 10px;
  left: 48vw;
  left: calc(100% / 2 - 40px);
}
#home .to-about p {
  font-size: 30px;
}
#home .to-about a {
  color: #FFF;
}
#home .to-about a:hover {
  color: #CCC;
  text-decoration: none;
}
@media screen and (max-width: 600px) {
  #home h1 {
    font-size: 30px;
    margin-top: 20vh;
  }
  #home .btn {
    margin: 0 0.2em;
    margin-top: 50px;
  }
  #home .to-about {
    left: 38vw;
    left: calc(100% / 2 - 40px);
  }
}

#about {
  background-color: #FFF;
  color: #0e2f60;
  width: 100%;
  min-height: 100vh;
}
#about .about-me {
  min-height: 40vh;
}
#about .about-me h3 {
  background: -webkit-linear-gradient(#0e2f60, #1d75f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 40px;
  padding-top: 2em;
}
#about .about-me p {
  text-align: center;
  font-size: 25px;
  margin: 0 25%;
  margin-top: 2em;
}
@media screen and (max-width: 650px) {
  #about .about-me h3 {
    padding-top: 20px;
  }
  #about .about-me p {
    margin: 0 0;
    margin-top: 1em;
    margin-bottom: 1em;
  }
}
#about .skills {
  background-color: #f44242;
  min-height: 60vh;
  font-size: 40px;
}
#about .skills h4 {
  color: #FFF;
  text-align: center;
  font-size: 40px;
  padding-top: 2em;
  margin-bottom: 2em;
}
#about .skills p {
  display: inline-block;
  color: #FFF;
  font-size: 20px;
}
#about .skills .side {
  display: inline-block;
  box-sizing: border-box;
  width: 49.5%;
}
#about .skills .stat-holder {
  margin: 0 5%;
}
#about .skills .stat-bar {
  display: inline-block;
  background-color: #CCC;
  width: 100%;
  height: 50px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}
#about .skills .stat {
  display: inline-block;
  background-color: #06d8c3;
  width: 90%;
  height: 50px;
}
#about .skills #stat-html {
  width: 80%;
}
#about .skills #stat-css {
  width: 80%;
}
#about .skills #stat-js {
  width: 70%;
}
#about .skills #stat-jq {
  width: 65%;
}
#about .skills #stat-react {
  width: 60%;
}
#about .skills #stat-api {
  width: 60%;
}
#about .skills #stat-sass {
  width: 75%;
}
#about .skills #stat-ui {
  width: 70%;
}
@media screen and (max-width: 1200px) {
  #about .skills .stat {
    min-width: 15%;
  }
}
@media screen and (max-width: 1000px) {
  #about .skills h4 {
    padding-top: 30px;
    margin-bottom: 1em;
  }
  #about .skills .side {
    width: 100%;
  }
  #about .skills .stat {
    min-width: 15%;
  }
}

#work h3 {
  text-align: center;
  font-size: 40px;
  padding-top: 3em;
}
#work .projects {
  display: flex;
  flex-wrap: wrap;
}
#work .project {
  box-sizing: border-box;
  background-color: #FFF;
  width: 47%;
  padding: 20px 15px;
  margin: 10px auto;
  border: 1px solid #EEE;
  box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.1);
  text-align: center;
}
#work .project .description {
  background-color: #EEE;
  font-style: italic;
  padding: 30px;
}
#work .project .stack {
  font-weight: bold;
}
#work img {
  width: 100%;
}
@media screen and (max-width: 800px) {
  #work h3 {
    padding-top: 1em;
    padding-bottom: 20px;
  }
  #work .project {
    width: 90%;
  }
}

#contact {
  color: #FFF;
  min-height: 100vh;
}
#contact h3 {
  text-align: center;
  font-size: 40px;
  padding-top: 2em;
}
#contact h3 span {
  color: #10edb1;
  font-size: 50px;
}
#contact p {
  text-align: center;
  font-size: 20px;
  padding-top: 2em;
}
#contact .form {
  background-color: #ff9114;
  min-height: 90vh;
}
#contact .form .form-group {
  margin: 0 auto;
  margin-top: 5%;
  padding-bottom: 20px;
}
#contact .form input {
  height: 60px;
}
#contact .form .form-control {
  margin: 0.3em auto;
  width: 100%;
  background-color: #FFF;
  border-radius: 0px;
}
#contact .form .btn {
  background-color: #10edb1;
  color: #FFF;
  border-radius: 0px;
  width: 100%;
  margin-top: 0.3em;
  font-size: 30px;
  font-weight: 400;
  box-shadow: 5px 5px 100px -15px rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease-in-out;
}
#contact .form .btn:hover {
  transform: scale(1.1);
}
#contact .icons {
  background-color: #191919;
  min-height: 10vh;
  text-align: center;
}
#contact .icons .fa-github, #contact .icons .fa-free-code-camp, #contact .icons .fa-envelope {
  margin: 2% 1%;
  font-size: 50px;
  color: #FFF;
}

/*# sourceMappingURL=style.css.map */
