@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  overflow: auto;
}

main {
  background-color: hsl(223, 44%, 22%);
  position: relative;
  overflow-y: hidden;
  height: 100vh;
}
main .section {
  background-color: hsl(223, 44%, 22%);
  z-index: 200;
  position: fixed;
  overflow: hidden;
  inset: 0;
  height: 100vh;
  opacity: 100%;
  width: 100vw;
  transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
main .section .logo {
  width: 50% !important;
}
main .navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
main .navbar .logo {
  padding: 1rem;
  width: 10%;
  height: 10%;
}
main .navbar .links {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
main .navbar .links .link {
  list-style: none;
}
main .navbar .links .link a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
}
main .navbar .links .link a span {
  color: #ffff00;
  font-size: 1rem;
  font-weight: 400;
}
main .navbar .hum-menu {
  display: none;
  height: 2rem;
  cursor: pointer;
}
main .menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  display: none;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border: 1px solid #ffff00;
  animation: slidein 2s forwards;
}
main .menu .close-menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 90%;
  padding: 1rem;
}
main .menu .close-menu svg {
  fill: #ffff00;
  height: 2rem;
}
main .menu a {
  text-decoration: none;
  color: #ffff00;
  font-size: 1rem;
  font-weight: 600;
}
main .menu .links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}
main .menu .links .link {
  list-style: none;
}
main .menu .links .link a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
}
main .menu .links .link a span {
  color: #ffff00;
  font-size: 1rem;
  font-weight: 400;
}
main .home {
  height: 70.5vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
}
main .home .showcase {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1px;
}
main .home .showcase .subtitle {
  font-family: "SF Mono", "Fira Code", "Fira Mono", "Roboto Mono", monospace;
  color: #ffff00;
  font-size: 1rem;
  font-weight: 400;
}
main .home .showcase h1 {
  color: #fff;
  font-size: 5rem;
  font-weight: 600;
}
main .home .showcase h2 {
  color: rgba(255, 255, 0, 0.5882352941);
  font-size: 3rem;
  font-weight: 600;
}
main .home .showcase p {
  color: #ffff00;
  font-size: 4rem;
  font-weight: 600;
}
main .home .showcase p span {
  color: #fff;
  font-size: 4rem;
  font-weight: 600;
}
main .personal-links {
  height: 20vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
main .personal-links .links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
main .personal-links .links a svg {
  height: 1.5rem;
  width: 1.5rem;
  stroke: #fff;
}
main .personal-links .links a :hover {
  stroke: #ffff00;
}
main .personal-links .mail {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
main .personal-links .mail hr {
  width: 5rem;
  height: 0.1rem;
  border: none;
  background-color: #ffff00;
}
main .personal-links .mail p {
  color: #ffff00;
  font-size: 1rem;
  font-weight: 400;
}
main .about {
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
}
main .about article {
  width: 50%;
}
main .about article .title {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
main .about article .title p {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
}
main .about article .title p span {
  color: #ffff00;
  font-size: 2rem;
  font-weight: 400;
}
main .about article .title hr {
  width: 30rem;
  height: 0.1rem;
  border: none;
  background-color: #ffff00;
}
main .about article .desc {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
}
main .about article .desc span {
  color: #ffff00;
  font-size: 1rem;
  font-weight: 400;
}
main .about .techs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  gap: 1rem;
}
main .about .techs .tech {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8rem;
}
main .about .techs .tech .t {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
main .about .techs .tech .t svg {
  fill: #fff;
  width: 5rem;
  height: 5rem;
  cursor: pointer;
}
main .about .techs .tech .t svg:nth-child(even) {
  fill: #ffff00 !important;
}
main .about .techs .tech .t p {
  color: #ffff00;
  font-size: 1rem;
  font-weight: 400;
}
main .experience {
  height: 50vh;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
main .experience article {
  width: 55%;
}
main .experience article .title {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
main .experience article .title p {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
}
main .experience article .title p span {
  color: #ffff00;
  font-size: 2rem;
  font-weight: 400;
}
main .experience article .title hr {
  width: 30rem;
  height: 0.1rem;
  border: none;
  background-color: #ffff00;
}
main .experience article .desc {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
}
main .experience article .desc span {
  color: #ffff00;
  font-size: 1rem;
  font-weight: 400;
}
main .experience .works {
  margin-top: 8rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-left: 2px #ffff00 solid;
}
main .experience .works .companies {
  padding: 0.6rem;
  list-style-type: none;
}
main .experience .works .companies .companie {
  color: #ffff00;
  font-size: 1rem;
  font-weight: 600;
}
main .experience .works .details .detail .role {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}
main .experience .works .details .detail .role span {
  color: #ffff00;
  font-size: 1.3rem;
  font-weight: 600;
}
main .experience .works .details .detail .duration {
  color: rgba(255, 255, 0, 0.5882352941);
  font-size: 0.9em;
  font-weight: 300;
}
main .experience .works .details .detail .roles {
  list-style-type: square;
  color: rgba(255, 255, 255, 0.6549019608);
  font-size: 0.9rem;
  font-weight: 400;
}
main .porjects {
  height: auto;
}
main .porjects article {
  margin-bottom: 3rem;
}
main .porjects article .title {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
main .porjects article .title p {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
}
main .porjects article .title p span {
  color: #ffff00;
  font-size: 2rem;
  font-weight: 400;
}
main .porjects article .title hr {
  width: 30rem;
  height: 0.1rem;
  border: none;
  background-color: #ffff00;
}
main .porjects .projects-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 9rem;
}
main .porjects .projects-list .project {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
main .porjects .projects-list .project:nth-child(even) {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
}
main .porjects .projects-list .project .test {
  width: 695px;
  height: 400px;
  background-color: rgba(31, 45, 80, 0.6509803922);
  position: absolute;
  border-radius: 0rem;
  transition: background-color 0.3s ease-in-out;
}
main .porjects .projects-list .project .test:hover {
  background-color: rgba(255, 255, 0, 0);
}
main .porjects .projects-list .project .project-img {
  width: 900px;
  height: 400px;
  border-radius: 0rem;
}
main .porjects .projects-list .project #prj2 {
  margin-right: -5Rem;
}
main .porjects .projects-list .project #prj2 .project-titel {
  margin-right: 5rem;
}
main .porjects .projects-list .project #prj2 .project-techs {
  margin-right: 5rem;
}
main .porjects .projects-list .project #prj2 .project-view {
  margin-right: 5rem;
}
main .porjects .projects-list .project .project-info {
  padding: 9rem 3rem;
  margin-left: -5Rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  border: 2px #ffff00 solid;
  gap: 1rem;
  border-right: none;
  border-left: none;
}
main .porjects .projects-list .project .project-info .project-titel {
  color: #ffff00;
  font-size: 1.7rem;
  font-weight: 500;
}
main .porjects .projects-list .project .project-info .project-desc {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  background-color: hsl(223, 60%, 22%);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  padding: 1rem;
  border-radius: 0rem;
  z-index: 1;
}
main .porjects .projects-list .project .project-info .project-techs {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
}
main .porjects .projects-list .project .project-info .project-techs .tech {
  color: rgba(255, 255, 255, 0.6549019608);
  font-size: 0.9rem;
  font-weight: 400;
}
main .porjects .projects-list .project .project-info .project-view a svg {
  height: 1.5rem;
  width: 1.5rem;
  stroke: #fff;
}
main .porjects .projects-list .project .project-info .project-view a :hover {
  stroke: #ffff00;
}
main .porjects .more {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5rem 0;
}
main .porjects .more a {
  text-decoration: none;
  background-color: #ffff00;
  padding: 0.5rem 4rem;
  color: hsl(223, 44%, 22%);
  font-size: 1rem;
  font-weight: 600;
}
main .porjects .more a:hover {
  background-color: #fff;
  color: hsl(223, 44%, 22%);
  font-size: 1rem;
  font-weight: 600;
}
main .contact {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
main .contact article .title {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
main .contact article .title p {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
}
main .contact article .title p span {
  color: #ffff00;
  font-size: 2rem;
  font-weight: 400;
}
main .contact article .title hr {
  width: 30rem;
  height: 0.1rem;
  border: none;
  background-color: #ffff00;
}
main .contact article .desc {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
}
main .contact article .desc span {
  color: #ffff00;
  font-size: 1rem;
  font-weight: 400;
}
main .contact-control {
  margin-top: 4rem;
  height: 90vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 15rem;
}
main .contact-control .form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
}
main .contact-control .form p {
  text-align: center;
  color: #ffff00;
  font-size: 2rem;
  font-weight: 600;
}
main .contact-control .form input {
  background-color: transparent;
  border: 2px #ffff00 solid;
  width: 25rem;
  padding: 1rem 0.7rem;
  text-align: start;
  outline: #ffff00;
  color: #ffff00;
  font-size: 1rem;
  font-weight: 500;
}
main .contact-control .form textarea {
  background-color: transparent;
  border: 2px #ffff00 solid;
  padding: 1rem 0.7rem;
  text-align: start;
  outline: #ffff00;
  color: #ffff00;
  font-size: 1rem;
  font-weight: 500;
}
main .contact-control .form button {
  background-color: #ffff00;
  padding: 1rem 0.7rem;
  color: hsl(223, 44%, 22%);
  font-size: 1rem;
  font-weight: 600;
  border: none;
}
main .contact-control .border {
  height: 20rem;
  width: 0.1rem;
  background-color: #ffff00;
}
main .contact-control .contact-info p {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
}
main .contact-control .contact-info .contact-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: baseline;
  gap: 2rem;
  list-style-type: none;
}
main .contact-control .contact-info .contact-links li {
  color: #ffff00;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
main .contact-control .contact-info .contact-links li:hover {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}
main .contact-control .contact-info .contact-links li svg {
  height: 1.5rem;
  width: 1.5rem;
}
main .contact-control .contact-info .contact-links li svg:hover {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}
main .contact-control .contact-info .contact-links li a {
  color: #ffff00;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}
main .contact-control .contact-info .contact-links li a:hover {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}
main .cpr {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 0;
}
main .cpr p {
  color: #ffff00;
  font-size: 1rem;
  font-weight: 400;
}

@keyframes slidein {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0%);
  }
}/*# sourceMappingURL=style.css.map */