@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}

html {
  scroll-behavior: smooth;
  color: white;
}

html,
body {
  font-size: 100%;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
  font-family: "League Spartan", sans-serif;
  background-color: #1a1e29;
}

li {
  list-style: none;
}

img,
figure {
  max-width: 100%;
  width: 100%;
  display: flex;
  object-fit: cover;
  object-position: center center;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
strong,
blockquote,
i,
b,
u,
em {
  font-size: 1em;
  font-weight: inherit;
  font-style: inherit;
  text-decoration: none;
  color: inherit;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

.header {
  width: 100%;
  min-height: 2em;
  background-color: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  z-index: 900;
  top: 0;
  padding: 1em;
}
.header__container {
  width: min(100%, 90em);
  margin: 0 auto;
}
.headeṛ__h1 {
  width: 2rem;
  height: 2rem;
}
.header__link {
  cursor: pointer;
  display: block;
  width: 2rem;
}
.header__logo {
  width: 100%;
}
.header__button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
}
.header__button--active::before {
  transform: translateY(-1px) rotate(-45deg);
}
.header__button--active::after {
  transform: translateY(1px) rotate(45deg);
}
.header__button--active .header__line {
  transform: scaleX(0);
}
@media screen and (min-width: 780px) {
  .header__button {
    display: none;
  }
}
.header__button::before, .header__button::after, .header__line {
  user-select: none;
  display: block;
  content: "";
  background-color: #FBFBFB;
  height: 4px;
  margin-bottom: 6px;
  border-radius: 6px;
  transition: transform 600ms;
  transform-origin: right;
}
@media screen and (min-width: 780px) {
  .header__container {
    display: flex;
    justify-content: space-between;
  }
}

.nav {
  max-height: 0;
  transition: 300ms ease;
}
.nav__item {
  transition: 0.5s;
  transform: translateX(100%);
  text-align: right;
}
.nav__link {
  display: block;
  padding: 1rem 0;
  cursor: pointer;
  width: 100%;
  color: #FBFBFB;
}
@media screen and (min-width: 780px) {
  .nav__link:after {
    content: "";
    display: block;
    width: 0%;
    transition: width 0.3s ease-in;
    border-bottom: 2px solid #01c38e;
  }
  .nav__link:hover:after {
    width: 100%;
  }
}
@media screen and (max-width: 780px) {
  .nav--open {
    max-height: 100%;
    margin-top: 1em;
  }
  .nav--open .nav__item {
    transform: translateX(0);
  }
}
@media screen and (min-width: 780px) {
  .nav__ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .nav__item {
    transform: translateX(0);
  }
}

.hero {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-content: center;
  text-align: center;
  height: 100vh;
  color: #FBFBFB;
}
.hero::before {
  content: "";
  position: absolute;
}
.hero__h2 {
  position: relative;
  font-size: 3em;
  margin: 0 0 2rem;
}
.hero__h3 {
  position: relative;
  font-size: 2.5em;
}
.hero__links {
  margin-top: 2rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  gap: 2rem;
}
.hero__icon {
  font-size: 2.8em;
  transition: all 0.3s ease;
}
.hero__icon:hover {
  transform: scale(1.1);
  color: #01c38e;
  filter: drop-shadow(0 0 4px #01c38e);
}
@media screen and (min-width: 780px) {
  .hero__h2 {
    font-size: 5em;
  }
  .hero__h3 {
    font-size: 4.9em;
  }
}

.section {
  min-height: 100vh;
  text-align: center;
}
.section .title {
  padding: 2em 0;
  font-size: 2rem;
  color: #01c38e;
  font-weight: bolder;
}

.projects {
  text-align: center;
  padding: 2rem;
  width: 100%;
}
.projects__title {
  font-size: 2rem;
  color: #01c38e;
  font-weight: bolder;
}
.projects__container {
  padding-top: 2rem;
  display: grid;
  width: 90%;
  max-width: 62em;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1em;
  margin: auto;
}

.project {
  width: 100%;
  min-height: 15vh;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 2px 2px #01c38e, 0 0 6px #FBFBFB;
  display: flex;
  flex-flow: column nowrap;
  justify-content: start;
  align-items: center;
}
.project__figure {
  height: 250px;
  margin: 0 0 1.7rem;
}
.project__title {
  text-align: left;
  color: #01c38e;
  font-weight: 900;
  font-size: 1.5em;
  margin: 0.5em 0;
}
.project__tecnologies {
  flex-grow: 1;
  margin-bottom: 1rem;
  padding: 0.25em;
}
.project__tecnology {
  display: inline-block;
  padding: 0.5em;
  margin: 0.5em;
  border-radius: 1em;
  border: 1px solid #132d46;
}
.project__links {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
}
.project__links a {
  border-radius: 1rem;
  padding: 0.5em;
  transition: 0.3s;
  font-size: 2em;
}
.project__links a:hover {
  filter: drop-shadow(0 0 6px #01c38e);
  transform: scale(1.2);
  color: #01c38e;
}

.about {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-content: center;
}
.about__p {
  text-align: left;
  padding: 0.5em 1em;
  max-width: 70ch;
  font-size: 2em;
}

.contact {
  display: block;
}
.contact__links {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  gap: 2rem;
}
.contact__links a {
  font-size: 2.8em;
  transition: all 0.3s ease;
}
.contact__links a:hover {
  filter: drop-shadow(0 0 6px #01c38e);
  transform: scale(1.2);
  color: #01c38e;
}

.form {
  display: block;
  margin: auto;
  max-width: 30em;
  padding: 4.5em 3em;
  text-align: center;
}
.form__group {
  position: relative;
  margin-bottom: 1em;
  padding: 1em 0;
}
.form__input, .form__textarea {
  width: 100%;
  background: none;
  color: #A0A0A0;
  outline: 0;
  border: none;
  padding: 0.9em;
  font-size: 1em;
  box-shadow: inset 0 -1px 0 0 #132d46;
  transition: 0.5s;
  background: transparent;
}
.form__input:focus, .form__textarea:focus {
  box-shadow: inset 0 -3px 0 0 #01c38e;
}
.form__textarea {
  resize: none;
  height: 20em;
  padding-top: 1em;
}
.form__label {
  color: #ccc;
  cursor: pointer;
  position: absolute;
  top: -0.2em;
  left: 0.6em;
  transform: translateY(2em);
  transition: transform 0.5s, color 0.2s;
}
.form__input:focus + .form__label, .form__textarea:focus + .form__label, .form__label--fill {
  transform: translateY(0) scale(1.2);
  transform-origin: left top;
  color: #01c38e;
}
.form__submit {
  background-color: #01c38e;
  margin-top: 2rem;
  padding: 1em 2em;
  border: none;
  font-size: 1em;
  font-weight: 700;
  color: #1a1e29;
  width: 100%;
  transition: 0.3s ease;
  cursor: pointer;
}
.form__submit:hover {
  background-color: #132d46;
  color: #FBFBFB;
  box-shadow: 0 0 5px 4px #01c38e;
}

.footer {
  color: #01c38e;
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
}

#cursor {
  display: none;
}
@media screen and (min-width: 780px) {
  #cursor {
    display: block;
    width: 3em;
    height: 3em;
    background: #FBFBFB;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    mix-blend-mode: difference;
    z-index: 999;
    pointer-events: none;
    transition: transform 0.4s ease;
  }
  #cursor.mini {
    transform: scale(0.7);
  }
}

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