body {
  margin: 0;
  font-family: "Reddit Mono", monospace;
  font-optical-sizing: auto;
  font-style: normal;
  overflow-x: hidden;
}

.wrapper {
  height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

.header {
  display: none;
  height: 4rem;
  background-color: #e4e1dd;
}

.author-header {
  background-color: #17252a;
  color: #feffff;
}

.header-contents {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}

.header-item {
  padding: 5px 20px;
  text-align: center;
  cursor: pointer;
}

.active {
  border-bottom: 3px solid blue;
}

.author-active {
  border-bottom: 3px solid #3aafa9;
}

.body-contents-author {
  display: flex;
  width: 100%;
  background: #def2f1;
}

.side-nav-bar {
  border-right: 1px solid gray;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 5.5%;
  background-color: #17252a;
  color: #feffff;
  border-radius: 10px;
  margin: 10px;
}

.body-sec {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100vh;
  width: 100%;
  overflow: auto;
  width: 95%;
  background-color: #def2f1;
}

.titles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.top-section {
  padding: 5rem 0;
  padding-top: 4rem;
  margin: 5rem 0;
  display: flex;
  gap: 7rem;
  align-items: center;
  justify-content: center;
  height: 90vh;
}

.title-bar {
  border-left: 5px solid #3aafa9;
  padding: 10px;
  font-weight: 500;
}

.author-titles {
  display: flex;
  gap: 1rem;
}

.skills-section {
  padding: 2rem 5rem;
}

.skills-set {
  border-left: 5px solid #3aafa9;
  padding: 10px;
  margin: 2rem;
  padding: 10px 40px;
}

.each-lang-wrap {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  width: 60rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  font-size: 12px;
}

.each-lang {
  border: 1px solid #e9e9e9;
  padding: 10px;
  min-width: 5rem;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 10px 8px rgba(0, 0, 0, 0.04), 0 4px 3px rgba(0, 0, 0, 0.1);
  background-color: #feffff;
}

.each-lang:hover {
  background-color: #3aafa9;
  color: #feffff;
}

.contact-links {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1rem;
}

.contact-links a {
  text-decoration: none;
  color: #3aafa9;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
}

.contact-links a:hover {
  color: #17252a;
}

.contact-links i {
  font-size: 1.2rem;
}

.my-img {
  width: 37rem;
  height: 34rem;
  border-radius: 10px;
}

.author-name {
  font-size: 5rem;
  font-weight: 600;
}

.set-col {
  color: #3aafa9;
}

.each-set {
  font-weight: 600;
  font-size: 1.25rem;
  color: #3aafa9;
}

.sec-heading {
  font-size: 3rem;
  font-weight: 500;
}

.dates {
  font-style: italic;
}

.bold {
  font-weight: 600;
}

.course {
  padding: 2rem 0;
}

.icons {
  filter: invert(100%) sepia(11%) saturate(7500%) hue-rotate(253deg)
    brightness(112%) contrast(111%);
}

.footer {
  background-color: #17252a;
  padding: 10px;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-content a {
  color: #feffff;
  margin: 0 1rem;
  font-size: 1.5rem;
}

.footer-content a:hover {
  color: #3aafa9;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 24px;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
}

.close-btn {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

.resume-section {
  text-align: center;
}

.resume-download button {
  background-color: #3aafa9; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.resume-download button img.download-icon {
  margin-right: 8px;
  width: 24px; /* Adjust the size as needed */
  height: 24px; /* Adjust the size as needed */
}

.resume-download button:hover {
  background-color: #3aafa9;
}

@media (max-width: 768px) {
  .header {
    display: block;
  }

  .side-nav-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #17252a;
    color: #feffff;
    z-index: 999;
    padding: 20px;
    box-sizing: border-box;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }

  .side-nav-bar.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(0);
  }

  .side-nav-bar .header-item {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .close-btn {
    display: block;
  }

  .hamburger {
    display: block;
  }

  .top-section {
    gap: 0rem;
    min-height: calc(100vh - 14rem);
    padding: 2rem 0;
    margin: 0;
    justify-content: flex-start;
  }

  .titles {
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .author-name {
    font-size: 2.5rem;
  }

  .title-bar {
    text-align: center;
    border-left: none;
    border-left: 3px solid #3aafa9;
    padding: 5px 0;
    margin-bottom: 1rem;
  }

  .body-sec {
    width: 100%;
    padding: 1rem;
    overflow-y: auto;
    height: calc(100vh - 4rem);
  }

  .top-section {
    padding: 2rem 0;
    margin: 2rem 0;
  }

  .my-img {
    display: none;
  }

  .skills-section {
    padding: 1rem;
  }

  .skills-set {
    padding: 10px;
    margin: 1rem 0;
  }

  .each-lang-wrap {
    width: 100%;
  }
}

.project-links {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.project-links a {
  text-decoration: none;
  color: #3aafa9;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.project-links a:hover {
  color: #17252a;
}

.project-links i {
  font-size: 1.2rem;
}
