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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

body {
  overflow-x: hidden;
}
body nav {
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  min-height: 60px;
  transition: box-shadow 0.3s ease;
}
body nav.scrolled {
  box-shadow: 0 10px 6px -6px #777;
}
body nav ul#nav-links {
  display: flex;
  margin-bottom: 0;
  position: static;
  transform: none;
  height: auto;
  width: auto;
  background-color: transparent;
  flex-direction: row;
}
body nav ul#nav-links li {
  list-style-type: none;
  margin: 1rem;
}
body nav ul#nav-links li .active {
  color: rgb(54, 212, 138);
}
body nav ul#nav-links li a {
  color: black;
  text-decoration: none;
  font-size: 1rem;
}
body nav ul#nav-links li a:hover {
  color: rgb(54, 212, 138);
}
body nav #hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 0;
}
body nav #hamburger-btn .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #333;
  transition: all 0.3s ease-in-out;
}
body main section.main-area {
  min-height: 50vh;
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
body main section.main-area div.info {
  flex-basis: 550px;
  padding: 1rem;
}
body main section.main-area div.info h1 {
  font-size: 3.5rem;
}
body main section.main-area div.info h2 {
  font-size: 2.2rem;
  font-weight: 500;
  min-height: 11rem;
}
body main section.main-area div.info .typewriter {
  font-family: "Roboto Mono", monospace;
  color: rgb(54, 212, 138);
  position: relative;
  display: block;
  min-height: 7rem;
}
body main section.main-area div.info .typewriter::after {
  content: "|";
  color: rgb(54, 212, 138);
  animation: blink 0.7s infinite;
}
body main section.main-area div.info a {
  color: white;
  background-color: rgb(54, 212, 138);
  padding: 0.25rem 0.5rem;
  font-size: 1.5rem;
  border-radius: 20px;
  display: inline-block;
  margin-top: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
body main section.main-area div.info a:hover {
  transform: scale(1.2);
}
body main section.main-area div.img-area {
  flex-basis: 450px;
}
body main section.main-area div.img-area img {
  width: 50%;
  height: 50%;
}
body main section.about-me {
  background-color: rgb(231, 255, 233);
  padding: 5rem 0rem;
  display: flex;
  justify-content: center;
}
body main section.about-me section.description {
  width: 50%;
  text-align: center;
}
body main section.about-me section.description h2 {
  font-size: 2rem;
}
body main section.about-me section.description .skills-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
}
body main section.about-me section.description .skills-table td {
  padding: 6px 10px;
  vertical-align: top;
  text-align: left;
}
body main section.about-me section.description .skills-table td:first-child {
  font-weight: bold;
  width: 120px;
}
body main section.about-me section.description .progress-bar-area p {
  margin-top: 1rem;
}
body main section.resume {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
}
body main section.resume section.table {
  flex: 5 0 500px;
  padding: 2rem;
}
body main section.resume section.table table {
  --bs-table-bg: none;
  border-collapse: collapse;
}
body main section.resume section.table table tr {
  border-bottom: 2px solid gray;
  transition: all 0.2s ease;
}
body main section.resume section.table table tr:hover {
  background-color: rgb(200, 255, 210);
}
body main section.resume section.table table tr td {
  padding: 1rem;
}
body main section.resume section.picture {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
body main section.resume section.picture img {
  width: 50%;
}
body main section.resume section.picture .greenReact {
  width: 30vw;
  height: 90vh;
  border: 10px solid rgb(195, 255, 200);
  position: absolute;
  top: 30px;
  left: 80px;
  z-index: -1;
}
body main section.resume section.picture .greenReact2 {
  width: 50vw;
  height: 40vh;
  border: 10px solid rgb(195, 255, 200);
  position: absolute;
  top: 300px;
  left: -300px;
  z-index: -1;
}
body main section.resume section.picture .greenReact3 {
  width: 50vw;
  height: 40vh;
  border: 10px solid rgb(195, 255, 200);
  position: absolute;
  top: 0px;
  left: -100px;
  z-index: -1;
}
body main section.contact {
  background-color: rgb(231, 255, 233);
  padding: 5rem 0rem;
  text-align: center;
  justify-content: center;
}
body main section.contact .contact-table {
  width: auto;
  border-collapse: collapse;
  margin: 10px auto;
  border: 2px solid #333;
}
body main section.contact .contact-table td {
  padding: 6px 10px;
  vertical-align: top;
  text-align: left;
}
body main section.contact .contact-table td:first-child {
  font-weight: bold;
  width: 120px;
}
body main section.project {
  background-color: rgb(231, 255, 233);
  padding: 5rem 0;
  text-align: center;
}
body main section.project h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
body main section.project hr {
  width: 80%;
  max-width: 800px;
  border: none;
  border-top: 2px solid #bbb;
  margin: 1.5rem auto 3rem;
}
body main section.project .project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
body main section.project .project-item {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
body main section.project .project-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}
body main section.project h2 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: #222;
}
body main section.project .project-tech-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9rem;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
}
body main section.project .project-tech-table th,
body main section.project .project-tech-table td {
  padding: 10px 10px;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
}
body main section.project .project-tech-table thead th {
  background-color: #f4f4f4;
  color: #333;
  font-weight: 600;
}
body main section.project .project-tech-table tbody td:first-child {
  font-weight: 500;
  color: #0056b3;
  width: 30%;
}
body main section.project .project-tech-table tbody td:last-child {
  color: #555;
}
body main section.project .project-tech-table tbody tr:last-child td {
  border-bottom: none;
}
body main section.project .project-img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  border: 2px solid #ccc;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
body main section.project .project-item:hover .project-img {
  transform: scale(1.02);
}
body main section.project .project-link {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 12px;
  color: white;
  background-color: rgb(54, 212, 138);
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
body main section.project .project-link:hover {
  background-color: rgb(34, 136, 41);
  transform: scale(1.05);
}
body main section.project .project-end-marker {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
  color: #999;
  font-weight: 500;
  letter-spacing: 2px;
}

@media screen and (max-width: 800px) {
  body nav #hamburger-btn {
    display: block;
    z-index: 1001;
  }
  body nav #hamburger-btn.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  body nav #hamburger-btn.active .bar:nth-child(2) {
    opacity: 0;
  }
  body nav #hamburger-btn.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  body nav ul#nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }
  body nav ul#nav-links li {
    margin: 1.5rem 0;
  }
  body nav ul#nav-links li a {
    font-size: 1.5rem;
  }
  body nav ul#nav-links.active {
    transform: translateX(0);
  }
  body main section.about-me section.description {
    width: 80%;
  }
  body main section.resume {
    overflow-x: auto;
  }
  body main section.resume section.table {
    padding: 0.5rem;
  }
  body main section.resume section.table table,
  body main section.resume section.table tr,
  body main section.resume section.table td {
    display: block;
    width: 100%;
  }
  body main section.resume section.table table tr {
    border-bottom: 2px solid gray;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
  body main section.resume section.table table tr:last-child {
    margin-bottom: 0;
  }
  body main section.resume section.table table tr td {
    padding: 0.25rem 0;
    border: none;
  }
  body main section.resume section.table table tr td:first-child {
    font-weight: bold;
    color: rgb(54, 212, 138);
  }
  body main section.resume section.picture div.greenReact,
  body main section.resume section.picture div.greenReact2,
  body main section.resume section.picture div.greenReact3 {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  main section.main-area {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  main section.main-area div.info {
    text-align: center;
  }
  main section.main-area div.info h1 {
    font-size: 2.5rem;
  }
  main section.main-area div.info h2,
  main section.main-area div.info .typewriter {
    font-size: 1.8rem;
    min-height: 8rem;
  }
  main section.main-area div.info a {
    margin: 1rem auto;
  }
  main section.main-area div.img-area {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}/*# sourceMappingURL=style.css.map */