@import url(https://fonts.googleapis.com/css?family=Lato);
/* animation style */
/* ==============ANIMATION=============== */
@-webkit-keyframes appear {
  from {
    opacity: 0;
    -webkit-filter: blur(2rem);
            filter: blur(2rem);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes appear {
  from {
    opacity: 0;
    -webkit-filter: blur(2rem);
            filter: blur(2rem);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0.7, 0.7);
            transform: scale(0.7, 0.7);
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0.7, 0.7);
            transform: scale(0.7, 0.7);
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  10% {
    -webkit-transform: scale(1.1, 0.9) translateY(0);
            transform: scale(1.1, 0.9) translateY(0);
  }
  30% {
    -webkit-transform: scale(0.9, 1.1) translateY(-0.3125rem);
            transform: scale(0.9, 1.1) translateY(-0.3125rem);
  }
  50% {
    -webkit-transform: scale(1.05, 0.95) translateY(0);
            transform: scale(1.05, 0.95) translateY(0);
  }
  57% {
    -webkit-transform: scale(1, 1) translateY(-0.125rem);
            transform: scale(1, 1) translateY(-0.125rem);
  }
  64% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  10% {
    -webkit-transform: scale(1.1, 0.9) translateY(0);
            transform: scale(1.1, 0.9) translateY(0);
  }
  30% {
    -webkit-transform: scale(0.9, 1.1) translateY(-0.3125rem);
            transform: scale(0.9, 1.1) translateY(-0.3125rem);
  }
  50% {
    -webkit-transform: scale(1.05, 0.95) translateY(0);
            transform: scale(1.05, 0.95) translateY(0);
  }
  57% {
    -webkit-transform: scale(1, 1) translateY(-0.125rem);
            transform: scale(1, 1) translateY(-0.125rem);
  }
  64% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
}

.appear {
  -webkit-animation: appear 2s ease-in-out;
          animation: appear 2s ease-in-out;
}

.fade-in-element {
  -webkit-animation: fade-in 1.4s;
          animation: fade-in 1.4s;
}

.bounce {
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-timing-function: cubic-bezier(0.28, 0.84, 0.42, 1);
          animation-timing-function: cubic-bezier(0.28, 0.84, 0.42, 1);
}

.hidden {
  opacity: 0;
}

.wave {
  position: absolute;
  background: url("../images/wave.png");
  height: 143px;
  width: 100%;
  bottom: 0;
  left: 0;
  -webkit-animation: animate 10s linear infinite;
          animation: animate 10s linear infinite;
}

.lower-wave {
  position: relative;
  background-image: url("../images/wave-reverse.png");
  height: 143px;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-animation: animate-reverse 10s linear infinite;
          animation: animate-reverse 10s linear infinite;
}

@-webkit-keyframes animate {
  0% {
    background-position: 0;
  }
  100% {
    background-position: 1360px;
  }
}

@keyframes animate {
  0% {
    background-position: 0;
  }
  100% {
    background-position: 1360px;
  }
}

@-webkit-keyframes animate-reverse {
  0% {
    background-position: 1360px;
  }
  100% {
    background-position: 0;
  }
}

@keyframes animate-reverse {
  0% {
    background-position: 1360px;
  }
  100% {
    background-position: 0;
  }
}

/* color variables */
/* universal style */
html,
body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #666666;
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  height: 100vh;
  line-height: 1.5;
  scroll-behavior: smooth;
}

a:link,
a:visited {
  color: #87ceeb;
  text-decoration: none;
}

.site-container {
  margin: 0 auto;
  width: 80%;
}

section {
  min-height: 100vh;
  width: 100%;
}

.social-icon {
  font-size: 1.5rem;
  padding: 0.3rem;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.social-icon:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/* home */
#home {
  background: linear-gradient(-225deg, #473B7B 0%, #3584A7 51%, #30D2BE 100%);
}

#profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding-top: 15rem;
  width: 60%;
  color: #ffffff;
}

.name {
  font-size: 2rem;
}

.summary {
  margin: 1rem 0;
  padding: 2rem 0;
  text-align: center;
}

#scroll-button {
  -webkit-animation: bounce 2s infinite;
          animation: bounce 2s infinite;
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
          clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  cursor: pointer;
  color: linear-gradient(-225deg, #473B7B 0%, #3584A7 51%, #30D2BE 100%);
  margin: 0 auto;
  background-color: #fff;
  height: 1.5rem;
  width: 1.5rem;
  text-align: center;
}

#scroll-button a {
  font-size: 1.5rem;
}

/* portfolio */
#portfolio-container {
  margin: 0 auto;
  padding-top: 10rem;
  width: 100%;
}

.project-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: relative;
  margin: 0.625rem auto 2.5rem;
  border: 0.0625rem solid #ddd;
  border-radius: 0.0625rem;
  -webkit-box-shadow: -0.125rem 0.125rem 0.0625rem 0 rgba(0, 0, 0, 0.25);
          box-shadow: -0.125rem 0.125rem 0.0625rem 0 rgba(0, 0, 0, 0.25);
  padding: 1.25rem;
  width: 90%;
}

.project-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 35rem;
}

.project-image img {
  width: 100%;
}

.project-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 2rem;
  text-align: justify;
  width: 35rem;
}

.project-summary h3 {
  font-size: 1.6rem;
}

.skill {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0.5rem 0;
}

.skill li {
  position: relative;
  margin: 0.2rem;
  padding: 0 0.3rem;
}

.skill li::before {
  border-bottom: 0.0625rem solid #999;
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  height: 0.0625rem;
  width: 60%;
}

.code {
  padding: 0.5rem 0;
}

.code-btn {
  outline: 0.0625rem solid #87ceeb;
  padding: 0.5rem;
  margin: 0 0.4rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.code-btn:hover {
  outline: 0.25rem solid transparent;
}

footer {
  background: linear-gradient(-225deg, #473B7B 0%, #3584A7 51%, #30D2BE 100%);
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 10rem;
  text-align: center;
  color: #ffffff;
}

/* very large desktop display */
@media only screen and (min-width: 3001px) and (max-width: 5500px) {
  body,
  html {
    font-size: 64px;
  }
  #profile {
    padding-top: 10rem;
  }
}

/* large desktop display */
@media only screen and (min-width: 2401px) and (max-width: 3000px) {
  body,
  html {
    font-size: 32px;
  }
  #profile {
    padding-top: 8rem;
  }
}

/* desktop display */
@media only screen and (min-width: 1600px) and (max-width: 2400px) {
  body,
  html {
    font-size: 24px;
  }
}

/* tablet display */
@media only screen and (max-width: 960px) {
  .site-container {
    width: 90%;
  }
  #profile {
    padding: 10rem 0;
    width: 100%;
  }
  .summary {
    padding: 0 5rem;
  }
  #portfolio-container {
    padding-top: 5rem;
  }
  .project-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

/* large mobile display */
@media only screen and (max-width: 480px) {
  .project-summary {
    padding: 0;
  }
}

/* small mobile display */
@media only screen and (max-width: 400px) {
  body,
  html {
    font-size: 12px;
  }
}
/*# sourceMappingURL=style.css.map */