@import url("https://fonts.googleapis.com/css?family=Montserrat:200,300,400|Playfair+Display|Roboto+Slab|Lobster");
body, html {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  overflow: visible;
}

html {
  height: 1080px;
  background-color: #fff5f5;
}

html::-webkit-scrollbar {
  width: .4vw;
}

html::-webkit-scrollbar-thumb {
  border-radius: 15px;
  background-color: #8cd5ff;
}

html::-webkit-scrollbar-track {
  border-radius: 15px;
}

html::-webkit-scrollbar-track-piece {
  border-radius: 15px;
  background-color: #292929;
}

nav {
  background: rgba(0, 0, 0, 0.9);
  padding: 2em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 10;
  top: 0;
  left: 0;
  position: fixed;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  overflow-y: scroll;
  font-size: 1vw;
}

nav .close-btn {
  position: relative;
  width: 18px;
  float: right;
  cursor: pointer;
  opacity: 0;
}

nav ul {
  list-style-type: none;
  margin: 5% auto 0 auto;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (25)[4];
      grid-template-columns: repeat(4, 25);
  width: 80%;
  opacity: 0;
  -webkit-transform: translateY(1em);
          transform: translateY(1em);
}

nav ul span {
  color: white;
  display: block;
  font-size: 1em;
}

@media screen and (max-width: 800px) {
  nav ul span {
    font-size: 3vw;
  }
}

nav ul img {
  width: 49%;
  height: 49%;
  padding: 0.1vw;
}

@media screen and (max-width: 800px) {
  nav ul img {
    width: 100%;
    height: 100%;
  }
}

.show-menu {
  display: block;
  -webkit-animation: slide-project .6s ease-in-out forwards;
          animation: slide-project .6s ease-in-out forwards;
}

.show-menu .close-btn {
  -webkit-animation: show-x .6s .6s forwards;
          animation: show-x .6s .6s forwards;
}

.show-menu ul {
  -webkit-animation: show-text .6s .8s forwards;
          animation: show-text .6s .8s forwards;
}

@-webkit-keyframes slide-project {
  from {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes slide-project {
  from {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@-webkit-keyframes show-x {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes show-x {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes show-text {
  from {
    opacity: 0;
    -webkit-transform: translateY(1em);
            transform: translateY(1em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes show-text {
  from {
    opacity: 0;
    -webkit-transform: translateY(1em);
            transform: translateY(1em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 15px 30px;
  overflow: hidden;
  position: fixed;
  top: 0px;
  width: 100%;
}

#logo-svg {
  height: 50px;
  width: 50px;
}

#navbar {
  background-color: #c5c5c5;
  position: fixed;
  top: -50px;
  width: 100%;
}

section {
  padding: 3%;
}

section h1 {
  text-align: center;
  font-size: 4em;
  margin: 1em auto auto auto;
  width: 70%;
  color: #494949;
  font-weight: 300;
}

section h2 {
  font-weight: 200;
  font-size: 1.5em;
  margin: 1em auto auto auto;
  width: 50%;
  text-align: center;
  color: #505050;
}

#intro #name {
  color: #464646;
  margin-top: 0%;
  border-bottom: 2px solid rgba(151, 151, 151, 0.5);
  display: block;
}

#intro #h2-bottom-line {
  border-top: 2px solid rgba(151, 151, 151, 0.5);
  display: block;
}

#intro #interests {
  border: 5px solid #464646;
  margin: 3em auto;
  width: 300px;
  height: 300px;
}

#intro #interests section {
  position: relative;
  padding: 0;
  margin: 43px auto;
}

#intro #interests section h1 {
  height: auto;
  width: auto;
  letter-spacing: .3em;
  color: #464646;
  font-size: 28px;
  margin: 10px 0;
  text-align: center;
}

#intro #profile {
  position: relative;
  margin: auto;
  border-radius: 50%;
  max-width: 100%;
  width: 15%;
  height: auto;
  display: block;
}

@media screen and (max-width: 800px) {
  #intro #profile {
    width: 70%;
  }
}

#intro #icon_text {
  font-size: 2vw;
  font-family: 'Lobster', cursive;
  color: #464646;
}

#intro #motto {
  font-size: 1.5vw;
  font-family: 'Playfair Display', serif;
  color: #464646;
}

.spacer {
  margin: 100px;
  min-height: 10px;
  min-width: 1px;
}

#projects {
  margin-top: 100px;
  padding: 0 10em;
}

#projects h1 {
  margin-left: 0px;
  font-size: 2.5vw;
  width: 100%;
  margin-top: 0%;
  text-align: left;
}

@media screen and (max-width: 800px) {
  #projects h1 {
    font-size: 5vw;
  }
}

#projects h1 a {
  text-decoration: none;
  color: black;
  font-family: 'Playfair Display', serif;
}

#projects h1 a:hover {
  border-bottom: 1px solid black;
}

#projects .left_align {
  text-align: left;
}

#projects h2 {
  font-weight: 400;
}

#projects h3 {
  text-align: center;
  font-weight: 300;
}

#projects h3 a {
  border-bottom: 1px solid black;
}

#projects .text-box {
  text-align: left;
  width: 40%;
}

#projects .img-container {
  padding: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#projects .img-container .img-text {
  margin: 0;
  font-weight: 100;
  font-style: italic;
  font-family: 'Montserrat';
}

#projects .img-container img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

#projects .skills {
  text-align: center;
}

#projects #inner-projects {
  position: relative;
  z-index: 1;
}

#projects #inner-projects #project-title {
  border-bottom: 2px solid rgba(151, 151, 151, 0.5);
  display: block;
}

#projects #inner-projects .project-wrap {
  float: left;
  position: relative;
  width: 20%;
  margin-left: 5%;
}

#projects #inner-projects .project-wrap:hover .project-description-overlay {
  cursor: pointer;
  visibility: visible;
  opacity: 1;
}

#projects #inner-projects .project-wrap:hover .project-description {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#projects #inner-projects .project-wrap:hover .project {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  opacity: 0.8;
}

#projects #inner-projects .project-wrap:hover .img-back {
  -webkit-filter: blur(2px);
          filter: blur(2px);
}

@media screen and (max-width: 800px) {
  #projects #inner-projects .project-wrap {
    margin-left: 0%;
    width: 100%;
  }
}

#projects #inner-projects .project {
  -webkit-transition: opacity .2s, -webkit-filter .2s;
  transition: opacity .2s, -webkit-filter .2s;
  transition: filter .2s, opacity .2s;
  transition: filter .2s, opacity .2s, -webkit-filter .2s;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

#projects #inner-projects .img-back {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: inline-block;
  position: relative;
}

#projects #inner-projects .img-back::after {
  padding-top: 100%;
  display: block;
  content: '';
}

#projects #inner-projects .project-description-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 1px;
  right: 1px;
  visibility: hidden;
  opacity: 0;
  color: white;
  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;
  text-decoration: none;
  -webkit-transition: opacity .2s, visibility .2s;
  transition: opacity .2s, visibility .2s;
}

#projects #inner-projects .project-description {
  font-size: 1vw;
  text-align: center;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
  -webkit-transform: translateY(1em);
          transform: translateY(1em);
}

@media screen and (max-width: 800px) {
  #projects #inner-projects .project-description {
    font-size: 3vw;
  }
}

#projects #inner-projects::after {
  content: "";
  display: table;
  clear: both;
}

#projects .next-section {
  padding-top: 200px;
  font-family: 'Playfair Display', serif;
}

#projects a {
  text-decoration: none;
}

#contact {
  padding: 1em;
  background: white;
}

#contact .contact-info {
  margin: 0 auto;
  display: table;
}

#contact .contact-info-sub {
  display: inline-block;
  margin: auto;
  padding-bottom: 20px;
}

#contact h1 {
  text-align: left;
  font-size: 4vw;
  width: 100%;
  margin: auto 0 15px;
}

@media screen and (max-width: 800px) {
  #contact h1 {
    font-size: 5vw;
  }
}

#contact h2 {
  font-size: 1.2vw;
  display: inline;
}

@media screen and (max-width: 800px) {
  #contact h2 {
    font-size: 2.5vw;
  }
}

#contact a {
  color: #494949;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

#contact img {
  float: left;
  padding-left: 10px;
  padding-right: 5px;
  width: 1vw;
  height: 3vh;
}

@media screen and (max-width: 800px) {
  #contact img {
    width: 3vw;
  }
}
/*# sourceMappingURL=main.css.map */