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

body {
  font-family: "Roboto Mono", system-ui;
  background-color: #323437;
  font-size: 1.1rem;
}

a {
  text-decoration: none;
  color: #808080;
  transition: 0.3s ease-in-out;
}

a:hover {
  color: #ffffff;
}

img {
  max-width: 100%;
}

.container {
  max-width: 700px;
  margin: auto;
}
.container header {
  position: sticky;
  top: 1.5rem;
  padding: 0.7rem;
  background-color: #646669;
  color: #D1D0C5;
  border-radius: 50px;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), 0 8px 10px rgba(0, 0, 0, 0.15);
}
.container header img {
  width: 25px;
}
.container header nav ul {
  display: flex;
  list-style-type: none;
  justify-content: space-around;
}
.container header nav ul a {
  color: #D1D0C5;
  text-decoration: none;
}
.container header nav ul a:hover {
  color: #ffffff;
}
.container .hero {
  padding-top: 6rem;
}
.container .hero .intro {
  margin-bottom: 1rem;
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: center;
}
.container .hero .intro img {
  width: 18%;
  border-radius: 5%;
}
.container .hero .intro p {
  color: #D1D0C5;
  font-size: 1.1rem;
  padding: 5px 0;
  text-align: justify;
}
.container .hero .cta {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}
.container .hero .cta .quick-links {
  display: flex;
  gap: 2rem;
}
.container .hero .cta .quick-links a {
  text-decoration: none;
  color: #D1D0C5;
}
.container .hero .cta .quick-links .btn1 {
  background-color: #000000;
  padding: 0.4rem 1rem;
  border-radius: 5px;
  color: #D1D0C5;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.container .hero .cta .quick-links .btn1:hover {
  background-color: #646669;
  color: #ffffff;
}
.container .hero .cta .quick-links .btn2 {
  background-color: #646669;
  padding: 0.4rem 1rem;
  border-radius: 5px;
  color: #D1D0C5;
  font-size: 1rem;
  cursor: default;
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}
.container .hero .cta .social {
  display: flex;
  gap: 1rem;
}
.container .hero .cta .social svg {
  width: 30px;
  color: #D1D0C5;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.container .hero .cta .social svg:hover {
  color: #646669;
}
.container .about {
  padding-top: 6rem;
  color: #D1D0C5;
}
.container .about h1 {
  margin-bottom: 1.5rem;
  font-size: 3rem;
}
.container .about p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.container .projects {
  padding-top: 6rem;
  color: #D1D0C5;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.container .projects h1 {
  margin-bottom: 1.5rem;
  font-size: 3rem;
}
.container .projects .project {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  background-color: #646669;
  border-radius: 10px;
  overflow: hidden;
}
.container .projects .project .project-description {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.container .projects .project .project-description h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.container .projects .project .project-description p {
  text-align: justify;
}
.container .projects .project .project-description a {
  text-decoration: none;
  color: #E2B714;
}
.container .projects .project .project-description a:hover {
  color: #ffffff;
}
.container .projects .project .project-description .stack {
  display: flex;
  gap: 0.5rem;
}
.container .projects .project .project-description .stack span {
  background-color: #323437;
  color: #D1D0C5;
  padding: 0.3rem 0.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
}
.container .projects .project img {
  border-radius: 0 10px 0 10px;
  width: 50%;
  margin: 2rem 0 -0.5rem -0.5rem;
  transition: transform 0.3s;
}
.container .projects .project img:hover {
  transform: rotate(3deg);
}
.container .projects .project:nth-child(even) {
  flex-direction: row-reverse;
}
.container .projects .project:nth-child(even) img {
  border-radius: 10px 0 10px 0;
  width: 50%;
  margin: 2rem -0.5rem -0.5rem 0;
  transition: transform 0.3s;
}
.container .projects .project:nth-child(even) img:hover {
  transform: rotate(-3deg);
}
.container .skills {
  padding-top: 6rem;
  color: #D1D0C5;
}
.container .skills h1 {
  margin-bottom: 1.5rem;
  font-size: 3rem;
}
.container .skills p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.container .skills .tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.container .skills .tools span {
  background-color: #646669;
  color: #D1D0C5;
  padding: 0.3rem 0.5rem;
  border-radius: 50px;
  font-size: 1rem;
}
.container footer {
  margin-top: 6rem;
  margin-bottom: 2rem;
  color: #646669;
  font-size: 0.8rem;
  text-align: center;
  background-color: #2C2E31;
  padding: 1rem;
  border-radius: 50px;
}
.container footer a {
  color: #646669;
  text-decoration: none;
}

@media only screen and (max-width: 600px) {
  body {
    font-size: 1rem;
  }
  .container header {
    top: 0;
    padding: 0.5rem;
    border-radius: 0;
  }
  .container header img {
    width: 20px;
  }
  .container header nav ul {
    flex-wrap: wrap;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 300;
  }
  .container .hero {
    padding: 4rem 4% 0 4%;
  }
  .container .hero .intro {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  .container .hero .intro img {
    width: 100%;
  }
  .container .hero .intro p {
    color: #D1D0C5;
    font-size: 1rem;
    text-align: left;
  }
  .container .hero .cta {
    flex-direction: column;
    gap: 1rem;
  }
  .container .hero .cta .quick-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    text-align: center;
  }
  .container .hero .cta .social svg {
    width: 20px;
  }
  .container .about {
    padding: 4rem 4% 0 4%;
  }
  .container .about h1 {
    font-size: 2rem;
  }
  .container .about p {
    font-size: 1rem;
  }
  .container .projects {
    padding: 4rem 4% 0 4%;
    gap: 1rem;
  }
  .container .projects h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .container .projects .project {
    flex-direction: column;
    gap: 0;
  }
  .container .projects .project img {
    border-radius: 10px 10px 0 0;
    width: 100%;
    margin: 0;
  }
  .container .projects .project .project-description {
    padding: 0.7rem;
  }
  .container .projects .project .project-description p {
    margin-bottom: 0.5rem;
  }
  .container .projects .project .project-description .stack {
    margin-top: 1rem;
  }
  .container .projects .project:nth-child(even) {
    flex-direction: column;
  }
  .container .projects .project:nth-child(even) img {
    border-radius: 10px 10px 0 0;
    width: 100%;
    margin: 0;
  }
  .container .skills {
    padding: 4rem 4% 0 4%;
  }
  .container .skills h1 {
    font-size: 2rem;
  }
  .container .contact {
    padding: 4rem 4% 0 4%;
  }
  .container .contact h1 {
    font-size: 2rem;
  }
  .container .contact form {
    gap: 1rem;
  }
  .container .contact form .form-group {
    flex-direction: column;
    gap: 1rem;
  }
  .container footer {
    margin-top: 4rem;
    margin-bottom: 0;
    font-size: 0.8rem;
    padding: 1rem;
    border-radius: 0;
  }
}/*# sourceMappingURL=style.css.map */