* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  height: 100%;
}

.app {
  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;
  width: 100vw;
  height: 100%;
}

.hero {
  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;
  text-align: center;
  color: #4b4c4e;
  background-color: #cecedf;
  opacity: 0.95;
  border-radius: 1em;
  max-width: 70ch;
}

.home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.home > * {
  visibility: hidden;
}

.about {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.projects {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
}

#name {
  -webkit-animation: fade-in 700ms ease-in forwards;
          animation: fade-in 700ms ease-in forwards;
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}

#subTitle {
  -webkit-animation: fade-in 500ms ease-in forwards;
          animation: fade-in 500ms ease-in forwards;
  -webkit-animation-delay: 700ms;
          animation-delay: 700ms;
}

#aboutMenu {
  -webkit-animation: fade-in 500ms ease-in forwards;
          animation: fade-in 500ms ease-in forwards;
  -webkit-animation-delay: 900ms;
          animation-delay: 900ms;
}

#projectsMenu {
  -webkit-animation: fade-in 500ms ease-in forwards;
          animation: fade-in 500ms ease-in forwards;
  -webkit-animation-delay: 1100ms;
          animation-delay: 1100ms;
}

#contactMenu {
  -webkit-animation: fade-in 500ms ease-in forwards;
          animation: fade-in 500ms ease-in forwards;
  -webkit-animation-delay: 1300ms;
          animation-delay: 1300ms;
}

.project-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.project {
  padding: 1em 1em;
  border-radius: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 768px) {
  .project {
    padding: 0.5em 0.5em;
  }
  html {
    font-size: 12px;
  }
}

.slider-controls {
  position: fixed;
  top: 1em;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider-controls div {
  font-size: 4rem;
  padding: 0.25em;
  cursor: pointer;
}

h1 {
  letter-spacing: -0.1em;
  font-family: 'Times New Roman', Times, serif;
  font-size: 4rem;
  font-weight: 800;
  text-align: center;
  margin: 0.35em;
  color: #4b4c4e;
}

h2 {
  letter-spacing: -0.05em;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 650;
}

p {
  color: #4b4c4e;
  letter-spacing: -0.05em;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 250;
  margin: 1em 0;
}

button {
  cursor: pointer;
  color: #4b4c4e;
  background-color: #cecedf;
  letter-spacing: -0.05em;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  margin: 0.5em;
  padding: 0.7em;
  border: 1px solid #4b4c4e;
  border-radius: 0.5em;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-property: color, background-color, -webkit-transform;
  transition-property: color, background-color, -webkit-transform;
  transition-property: color, background-color, transform;
  transition-property: color, background-color, transform, -webkit-transform;
  -webkit-transition-duration: 500ms, 500ms, 500ms;
          transition-duration: 500ms, 500ms, 500ms;
}

button:hover {
  color: #cecedf;
  background-color: #4b4c4e;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

a {
  color: #4b4c4e;
  background-color: #cecedf;
  letter-spacing: -0.05em;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  margin: 0.5em;
  padding: 0.7em;
  border: 1px solid #4b4c4e;
  border-radius: 0.5em;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-property: color, background-color, -webkit-transform;
  transition-property: color, background-color, -webkit-transform;
  transition-property: color, background-color, transform;
  transition-property: color, background-color, transform, -webkit-transform;
  -webkit-transition-duration: 500ms, 500ms, 500ms;
          transition-duration: 500ms, 500ms, 500ms;
  text-decoration: none;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

a:hover {
  color: #cecedf;
  background-color: #4b4c4e;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.navMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 1em;
}

.hamburger {
  z-index: 1;
  cursor: pointer;
  padding: 1rem;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #cecedf;
  border-radius: 1em;
  opacity: 0.95;
}

.hamburger div {
  -webkit-transition: opacity 500ms, -webkit-transform 500ms;
  transition: opacity 500ms, -webkit-transform 500ms;
  transition: transform 500ms, opacity 500ms;
  transition: transform 500ms, opacity 500ms, -webkit-transform 500ms;
  background-color: #4b4c4e;
  width: 2.2rem;
  height: 0.3rem;
  margin: 0.2rem;
}

.hamburgerToggle #line1 {
  -webkit-transform: translateY(0.7rem) rotate(45deg);
          transform: translateY(0.7rem) rotate(45deg);
}

.hamburgerToggle #line2 {
  opacity: 0;
}

.hamburgerToggle #line3 {
  -webkit-transform: translateY(-0.7rem) rotate(-45deg);
          transform: translateY(-0.7rem) rotate(-45deg);
}

.hamburgerMenu {
  display: none;
  -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;
  -webkit-transform: scale(0);
          transform: scale(0);
  background-color: #cecedf;
  border-radius: 1em;
  opacity: 0.95;
}

.hamburgerMenu button {
  font-size: 3rem;
}

.techStack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 1em;
  border: 0.1em solid #4b4c4e;
  border-radius: 1em;
}

.techStack img {
  opacity: 1;
  margin: 1em;
  height: 2em;
}

.techStack img:hover {
  -webkit-transform: scale(1.1) rotate(-15deg);
          transform: scale(1.1) rotate(-15deg);
}

.particleBackground {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  opacity: 0.6;
}

@-webkit-keyframes fade-in {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}

.scaleUp {
  -webkit-animation: scaleUp 500ms ease forwards;
          animation: scaleUp 500ms ease forwards;
}

@-webkit-keyframes scaleUp {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scaleUp {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/*# sourceMappingURL=style.css.map */