@import url("https://fonts.googleapis.com/css2?family=Inter:wght@320;400;500;750;900&display=swap");
body {
  height: 100vh;
  width: 100%;
}

* {
  margin: 0;
}

.content {
  position: relative;
  margin: auto;
}

* {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

h2 {
  font-size: 2.6em;
}

h3 {
  font-size: 1.6em;
}

@media only screen and (max-width: 600px) {
  h2 {
    font-size: 2em;
  }
}

@media only screen and (max-width: 300px) {
  h2 {
    font-size: 1.6em;
  }
}

.work {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1000px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: auto;
  height: auto;
  position: relative;
  padding: 40px 20px 30px;
  text-align: left;
}

.work a {
  margin-top: 35px;
  color: inherit;
  text-decoration: none;
}

.work-title {
  max-width: 1000px;
  width: 100%;
  text-align: left;
  padding: 0 20px 0px;
  color: #1a202c;
}

.work-item {
  border-radius: 10px;
  -webkit-box-shadow: 0px 10px 20px #00000011;
          box-shadow: 0px 10px 20px #00000011;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.4s, -webkit-box-shadow 0.4s;
  transition: -webkit-transform 0.4s, -webkit-box-shadow 0.4s;
  transition: transform 0.4s, box-shadow 0.4s;
  transition: transform 0.4s, box-shadow 0.4s, -webkit-transform 0.4s, -webkit-box-shadow 0.4s;
}

.work-item:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0px 20px 20px #00000033;
          box-shadow: 0px 20px 20px #00000033;
}

@media only screen and (max-width: 600px) {
  .work {
    padding: 30px 55px 30px;
  }
}

@media only screen and (max-width: 450px) {
  .work {
    padding: 30px 15px 30px;
  }
}

body {
  background: white;
}

@-webkit-keyframes textAnim {
  from {
    opacity: 0;
    -webkit-transform: translateY(-200px);
            transform: translateY(-200px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes textAnim {
  from {
    opacity: 0;
    -webkit-transform: translateY(-200px);
            transform: translateY(-200px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@-webkit-keyframes arrowAnim {
  from {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  from {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@keyframes arrowAnim {
  from {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  from {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

.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;
  margin: auto;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-attachment: fixed;
  position: relative;
}

.hero-title {
  font-size: 1.4em;
  line-height: 1.3em;
  font-weight: 550;
  color: #1a202c;
  width: 100%;
}

.hero-para {
  font-size: 1.3em;
  line-height: 1.4em;
  font-weight: 400;
  color: #758397;
  font-weight: 500;
  padding: 2rem 0;
}

.hero-name {
  font-size: 2em;
  font-weight: 900;
  line-height: 1.4em;
}

.hero-cta {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  animation: arrowAnim 0.5s infinite alternate-reverse;
}

.hero-cta a {
  text-decoration: none;
  color: black;
  font-size: 1.8em;
}

.hero-text {
  text-align: left;
  height: auto;
  max-width: 600px;
  margin: auto;
  width: 100%;
  -webkit-animation: textAnim 2s;
          animation: textAnim 2s;
}

@media only screen and (max-width: 660px) {
  .hero-text {
    width: auto;
    padding: 0 20px;
  }
}

@media only screen and (max-width: 500px) {
  .hero-text {
    font-size: 0.8em;
  }
}

@media only screen and (max-width: 340px) {
  .hero-text {
    padding: 0 10px;
  }
  .hero-title {
    font-size: 1.2em;
  }
}

.projects {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #e8e9ee;
  margin: auto;
  width: auto;
  height: auto;
  position: relative;
  padding: 50px 20px;
  text-align: left;
}

.projects a {
  margin-top: 35px;
  color: inherit;
  text-decoration: none;
}

.projects a:nth-child(2) {
  margin: 35px 20px 0;
}

.projects-title {
  width: auto;
  text-align: left;
  padding: 0 20px 10px;
  color: #1a202c;
}

.projects-title h2 {
  color: black;
}

.projects-flex {
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.projects-flex a {
  width: 300px;
}

.projects-item {
  width: 100%;
  text-align: center;
  line-height: 1.5em;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6px;
  -webkit-box-shadow: 0px -2px 8px #ffffff66, 0px 4px 10px #353a5018;
          box-shadow: 0px -2px 8px #ffffff66, 0px 4px 10px #353a5018;
  background: #ffffff;
}

.projects-img {
  width: 95%;
  height: 140px;
  margin: 0 auto 1em;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 6px;
  border: solid 3px #0044ff41;
  -webkit-box-shadow: 0px 4px 10px #00000011;
          box-shadow: 0px 4px 10px #00000011;
}

.projects-desc {
  font-size: 0.9em;
}

@media only screen and (max-width: 1100px) {
  .projects-flex a {
    width: 290px;
  }
}

@media only screen and (max-width: 950px) {
  .projects-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 35px 0;
  }
  .projects-flex a {
    margin-top: 0px;
    width: auto;
    max-width: 380px;
    color: inherit;
    text-decoration: none;
    font-size: 1.1em;
  }
  .projects-flex a:nth-child(2) {
    margin: 35px 0;
  }
  .projects-img {
    height: 197px;
  }
}

.skills {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1100px;
  margin: auto;
  height: auto;
  overflow: hidden;
  position: relative;
  padding: 40px 0px;
}

.skills-title {
  width: auto;
  text-align: left;
  padding: 0 20px 20px;
  color: #1a202c;
}

.skills-flex {
  max-width: 1000px;
  padding: 0px 40px 0px;
  width: 100%;
}

.skills-flex a {
  color: black;
  text-decoration: none;
  font-weight: 550;
}

.skills-flex-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: auto;
  margin: auto;
  position: relative;
}

.skills-deco2 {
  position: absolute;
  height: 140px;
  width: 350px;
  background: radial-gradient(#47517c44 25%, transparent 25%);
  background-size: 10px 10px;
  background-repeat: repeat;
  bottom: -50px;
  right: 0px;
  z-index: -100;
}

.skills-flex-item {
  background: white;
  -webkit-box-shadow: 0px 15px 30px rgba(70, 72, 95, 0.2);
          box-shadow: 0px 15px 30px rgba(70, 72, 95, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 160px;
  height: 160px;
  margin: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 0px;
  border-radius: 6px;
  color: #1a202c;
}

.icon-tailwind {
  background: url(/img/tailwind.svg) center no-repeat;
  background-size: 100% auto;
  height: 60px;
  width: 60px;
}

.icon-gatsby {
  background: url(/img/gatsby.svg) center no-repeat;
  background-size: 100% auto;
  height: 45px;
  width: 45px;
}

.skills-item-icon {
  font-size: 3em;
}

@media only screen and (max-width: 1017px) {
  .skills-title {
    text-align: center;
  }
  .skills-flex-item {
    margin: 10px;
    font-size: 0.9em;
    height: 130px;
    width: 130px;
  }
  .icon-tailwind {
    height: 50px;
    width: 50px;
  }
  .icon-gatsby {
    height: 40px;
    width: 40px;
  }
}

@media only screen and (max-width: 590px) {
  .skills-flex-item {
    margin: 10px;
    font-size: 0.65em;
    height: 100px;
    width: 100px;
    padding: 10px 0px;
  }
  .skills-item-title {
    font-size: 1.2em;
  }
  .icon-tailwind {
    height: 40px;
    width: 40px;
  }
  .icon-gatsby {
    height: 30px;
    width: 30px;
  }
}

.footer {
  background: #eee;
  text-align: center;
}

.footer-links {
  padding: 20px 0px;
  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;
}

.footer-links a {
  font-size: 1em;
  margin: 0px 10px;
  text-decoration: none;
  color: black;
}
/*# sourceMappingURL=main.css.map */