@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600&display=swap");
.container {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.header__title {
  font-size: 20px;
  background: linear-gradient(155deg, rgb(116, 255, 192) 40%, rgb(6, 218, 122) 53%);
  color: transparent;
  background-clip: text;
}
@media (min-width: 420px) {
  .header__title {
    font-size: 35px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  padding: 20px;
}
@media (min-width: 700px) {
  .header__nav {
    flex-direction: row;
  }
}
.header__btn-wrapper {
  display: flex;
  gap: 5px;
}
.header__btn {
  background-color: #151515;
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
}
@media (min-width: 720px) {
  .header__btn {
    display: none;
  }
}
.header__list {
  display: none;
  list-style: none;
}
@media (min-width: 720px) {
  .header__list {
    display: flex;
    gap: 15px;
  }
}
.header__list--link {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  transition: 0.3s ease-in-out;
}
.header__list--link:hover {
  color: rgb(78, 225, 160);
}
.header__content {
  display: flex;
  min-height: 85vh;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  padding: 20px;
  gap: 100px;
}
.header__content--right {
  max-width: 400px;
}
.header__content--left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 915px) {
  .header__content {
    justify-content: space-between;
    flex-direction: row;
  }
  .header__content--right {
    max-width: 400px;
  }
}
.header__text {
  font-size: 35px;
}
.header__text--name {
  position: relative;
  display: inline-block;
}
.header__text--name::before {
  position: absolute;
  content: "";
  background-color: rgb(78, 225, 160);
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
}
@media (min-width: 750px) {
  .header__text {
    font-size: 50px;
  }
}
.header__desc {
  max-width: 400px;
  margin-bottom: 15px;
  color: #d9d9d9;
  line-height: 25px;
  font-size: 15px;
}
.header__desc .bold {
  color: rgb(78, 225, 160);
}
@media (min-width: 750px) {
  .header__desc {
    font-size: 20px;
  }
}
.header__contact-btn {
  text-decoration: none;
  padding: 5px 8px;
  border: 1px solid rgb(78, 225, 160);
  color: #d9d9d9;
  position: relative;
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  max-width: 115px;
}
.header__contact-btn::before {
  content: "";
  background-color: rgb(78, 225, 160);
  position: absolute;
  top: 0;
  left: unset;
  right: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  transition: 0.3s ease-in-out;
}
.header__contact-btn:hover {
  color: #151515;
}
.header__contact-btn:hover::before {
  right: unset;
  left: 0;
  width: 100%;
}
.header__img {
  width: 100%;
  object-fit: cover;
}

.experience__title {
  text-align: center;
  font-size: 35px;
  background: linear-gradient(155deg, rgb(116, 255, 192) 40%, rgb(6, 218, 122) 53%);
  color: transparent;
  background-clip: text;
}
.experience__card {
  max-width: 600px;
  margin: 15px auto;
  padding: 10px;
  background-color: #151515;
  border-radius: 8px;
  border: solid 1px rgb(158, 255, 211);
}
.experience .timeline {
  color: rgb(78, 225, 160);
}
.experience .list {
  margin: 15px 0;
  color: rgb(243, 255, 224);
}
.experience .tech {
  color: white;
}
.experience .chip__wrapper {
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.experience .chip {
  background: rgb(2, 0, 36);
  background: linear-gradient(180deg, rgb(0, 107, 62) 0%, rgb(9, 121, 87) 64%, rgb(0, 255, 136) 100%);
  padding: 5px 12px;
  border-radius: 15px;
}

.skills {
  padding: 20px;
  margin-top: 20px;
}
.skills__title {
  font-size: 35px;
  background: linear-gradient(155deg, rgb(116, 255, 192) 40%, rgb(6, 218, 122) 53%);
  color: transparent;
  background-clip: text;
  text-align: center;
}
@media (min-wdth: 700px) {
  .skills__title {
    font-size: 50px;
  }
}
.skills__desc {
  color: #d9d9d9;
  font-size: 20px;
  text-align: center;
  margin: 15px 0;
}
.skills__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.skills__item {
  width: 100px;
  height: 100px;
  background-color: rgb(46, 46, 46);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.3s ease-in-out;
}
.skills__item--name {
  font-size: 13px;
  font-weight: 600;
}
.skills__item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  transition: 0.3s ease-in-out;
}
.skills__item--html {
  color: rgb(255, 169, 8);
  box-shadow: rgba(255, 169, 8, 0.445) 0px 4px 12px;
}
.skills__item--html:hover {
  color: #151515;
}
.skills__item--html:hover::before {
  background-color: rgb(255, 169, 8);
}
.skills__item--css {
  color: rgb(0, 140, 255);
  box-shadow: rgba(0, 140, 255, 0.445) 0px 4px 12px;
}
.skills__item--css:hover {
  color: #151515;
}
.skills__item--css:hover::before {
  background-color: rgb(0, 140, 255);
}
.skills__item--react {
  color: rgb(38, 220, 226);
  box-shadow: rgba(38, 220, 226, 0.445) 0px 4px 12px;
}
.skills__item--react:hover {
  color: #151515;
}
.skills__item--react:hover::before {
  background-color: rgb(38, 220, 226);
}
.skills__item--js {
  color: rgb(255, 251, 44);
  box-shadow: rgba(255, 251, 44, 0.445) 0px 4px 12px;
}
.skills__item--js:hover {
  color: #151515;
}
.skills__item--js:hover::before {
  background-color: rgb(255, 251, 44);
}
.skills__item--node {
  color: rgb(145, 221, 22);
  box-shadow: rgba(145, 221, 22, 0.445) 0px 4px 12px;
}
.skills__item--node:hover {
  color: #151515;
}
.skills__item--node:hover::before {
  background-color: rgb(145, 221, 22);
}
.skills__item--ts {
  color: rgb(0, 153, 255);
  box-shadow: rgba(0, 153, 255, 0.445) 0px 4px 12px;
}
.skills__item--ts:hover {
  color: #151515;
}
.skills__item--ts:hover::before {
  background-color: rgb(0, 153, 255);
}
.skills__item--sass {
  color: rgb(251, 124, 255);
  box-shadow: rgba(251, 124, 255, 0.445) 0px 4px 12px;
}
.skills__item--sass:hover {
  color: #151515;
}
.skills__item--sass:hover::before {
  background-color: rgb(251, 124, 255);
}
.skills__item--tw {
  color: rgb(0, 140, 255);
  box-shadow: rgba(0, 140, 255, 0.445) 0px 4px 12px;
}
.skills__item--tw .svg path {
  transition: 0.3s ease-in-out;
  fill: rgb(0, 140, 255);
}
.skills__item--tw:hover {
  color: #151515;
}
.skills__item--tw:hover .svg path {
  fill: rgb(27, 27, 27);
}
.skills__item--tw:hover::before {
  background-color: rgb(0, 140, 255);
}
.skills__item--next {
  color: rgb(218, 218, 218);
  box-shadow: rgba(218, 218, 218, 0.445) 0px 4px 12px;
}
.skills__item--next .svg path {
  transition: 0.3s ease-in-out;
  fill: rgb(218, 218, 218);
}
.skills__item--next:hover {
  color: #151515;
}
.skills__item--next:hover .svg path {
  fill: rgb(27, 27, 27);
}
.skills__item--next:hover::before {
  background-color: rgb(218, 218, 218);
}
.skills__item--ex {
  color: rgb(165, 165, 165);
  box-shadow: rgb(165, 165, 165) 0px 4px 12px;
}
.skills__item--ex:hover {
  color: #151515;
}
.skills__item--ex:hover::before {
  background-color: rgb(165, 165, 165);
}
.skills__item--php {
  color: #777bb3;
  box-shadow: rgb(182, 183, 253) 0px 4px 12px;
}
.skills__item--php:hover {
  color: #151515;
}
.skills__item--php:hover::before {
  background-color: #777bb3;
}

.projects {
  margin-top: 30px;
  padding: 20px;
}
.projects__title {
  text-align: center;
  background: linear-gradient(155deg, rgb(116, 255, 192) 40%, rgb(6, 218, 122) 53%);
  color: transparent;
  background-clip: text;
}
.projects__card {
  max-width: 300px;
  height: max-content;
  padding: 10px;
  background-color: #151515;
  border-radius: 8px;
  box-shadow: rgba(180, 255, 150, 0.35) 0px 5px 10px;
}
.projects .bold {
  color: rgb(78, 225, 160);
}
.projects__container {
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.projects__img {
  width: 100%;
}
.projects__img--img {
  width: 100%;
}
.projects__desc {
  color: #d9d9d9;
  font-weight: 800;
  margin: 10px 0;
}
.projects .btn__wrapper-btn {
  display: inline-block;
  border: 1px solid rgb(78, 225, 160);
  padding: 5px 8px;
  text-decoration: none;
  background-color: rgb(78, 225, 160);
  transition: 0.3s ease-in-out;
  color: #151515;
  margin-right: 8px;
}
.projects .btn__wrapper-btn:hover {
  background-color: #151515;
  color: rgb(78, 225, 160);
}

.footer__content {
  padding: 20px;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  flex-direction: column;
}
@media (min-width: 700px) {
  .footer__content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__list {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.footer__list--link {
  color: #d9d9d9;
  transition: 0.3s ease-in-out;
}
.footer__list--link:hover {
  color: rgb(78, 225, 160);
}
.footer .contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .link {
  color: #d9d9d9;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.footer .link:hover {
  color: rgb(78, 225, 160);
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  padding: 20px;
  background-color: #151515;
  transform: translateX(-100%);
  transition: all 0.5s ease-in-out;
}
.menu.active {
  transform: translateX(0);
}
.menu__btn {
  background-color: #151515;
  color: #fff;
  border: none;
  font-size: 25px;
  cursor: pointer;
}
.menu .menus > .header__list {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}
.menu .menus > .header__list .header__list--item {
  margin-top: 15px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #151515;
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  color: white;
}

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