::-webkit-scrollbar {
  width: 0.5rem;
}

::-webkit-scrollbar-track {
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  background-color: #032924;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #07554b;
}

* {
  font-family: "Nunito", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  background-color: #f3f4f6;
}

.nav-bar {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
  padding: 0.9rem 10vw;
  font-size: 1.1rem;
}
.nav-bar .logo {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.nav-bar .nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}
.nav-bar .nav-list-item {
  display: flex;
  align-items: center;
}
.nav-bar .nav-list-item a {
  text-decoration: none;
  color: black;
}
.nav-bar .nav-list-item a:hover {
  text-decoration: underline;
}
.nav-bar .mobile-menu-btn {
  display: none;
}

.home {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10vw;
  background-color: #149383;
}
.home-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.home-left-header {
  display: flex;
  flex-direction: column;
  font-size: 3.2rem;
  font-weight: 700;
}
.home-left-header-small {
  font-weight: normal;
  font-size: 1.2rem;
}
.home-left-footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
.home-left-footer a {
  padding: 0.4rem;
  border-radius: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}
.home-left-footer a svg {
  width: 2rem;
  height: 2rem;
  color: white;
}
.home-left-footer .lin {
  background-color: #0A66C2;
}
.home-left-footer .git {
  background-color: #171515;
}
.home-right {
  width: 30vw;
  height: 30vw;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  background-image: url("../pic/me.png");
  background-size: 110%;
  background-position: -20px -25px;
}

.about {
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  padding: 70px 0;
  font-size: 1.1rem;
}
.about-header {
  font-size: 40px;
  font-weight: 1000;
}
.about-header .gr {
  color: #149383;
}
.about-content {
  width: 80vw;
  display: flex;
  justify-content: center;
  gap: 50px;
}
.about-content-pic img {
  width: 400px;
  border-radius: 0.2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}
.about-content-right {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  gap: 20px;
}
.about-content-right .current-skills .techs {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.about-content-right .current-skills .techs span {
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
  border-radius: 10rem;
}
.about-content-right .current-skills .techs span img {
  width: 2rem;
}

.work {
  padding: 70px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  background-color: #149383;
  font-size: 1.1rem;
}
.work-header {
  font-size: 40px;
  font-weight: 1000;
}
.work-header .wht {
  color: #ddd;
}
.work-content {
  width: 80vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.work-content .project {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1rem;
  background-color: #fff;
  padding: 1rem;
  border-radius: 1rem;
  height: -moz-fit-content;
  height: fit-content;
}
.work-content .project-name {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 1.2rem;
  font-weight: 1000;
}
.work-content .project-explain {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.work-content .project-explain .describe {
  text-align: justify;
}
.work-content .project-explain .project-link {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.work-content .project-explain .project-link a {
  color: black;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 5px 10px;
  gap: 5px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.7);
  background-color: #ddd;
  transition: all 0.2s;
}
.work-content .project-explain .tech-stack .techs {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.work-content .project-explain .tech-stack .techs span {
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
  border-radius: 10rem;
}
.work-content .project-explain .tech-stack .techs span img {
  width: 2rem;
}
.work-content .project-img {
  width: 60%;
  display: flex;
}
.work-content .project-img img {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.5);
}
.work-content .project:nth-child(even) {
  flex-direction: row-reverse;
}

.experience {
  width: 80vw;
  margin: 5rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.experience-header {
  font-size: 40px;
  font-weight: 1000;
}
.experience-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.experience-content .experience-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background-color: white;
  border: 2px solid #149383;
}
.experience-content .experience-item .top {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.experience-content .experience-item .top .img {
  display: flex;
}
.experience-content .experience-item .top .img img {
  width: 3rem;
  border-radius: 10rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
}
.experience-content .experience-item .top .company-job {
  display: flex;
  flex-direction: column;
}
.experience-content .experience-item .top .company-job .company {
  font-size: 1.2rem;
  font-weight: 1000;
}
.experience-content .experience-item .top .company-job .company span {
  font-size: 1rem;
  font-weight: normal;
}
.experience-content .experience-item .top .company-job .job {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.7);
}
.experience-content .experience-item .bottom {
  display: flex;
  flex-direction: column;
}
.experience-content .experience-item .bottom .bottom-extra {
  margin-top: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.experience-content .experience-item .bottom .bottom-extra .date {
  font-weight: bold;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.4);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 10vw;
  background-color: #149383;
  align-items: center;
}
.footer-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-top-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-top-left .phone, .footer-top-left .email, .footer-top-left .place {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-top-left .phone svg, .footer-top-left .email svg, .footer-top-left .place svg {
  color: black;
}
.footer-top-right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
.footer-top-right a {
  padding: 0.4rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}
.footer-top-right a svg {
  width: 2rem;
  height: 2rem;
  color: white;
}
.footer-top-right .lin {
  background-color: #0A66C2;
}
.footer-top-right .git {
  background-color: #171515;
}
.footer .line {
  width: 100%;
  height: 1.2px;
  background-color: black;
  border-radius: 5px;
}
.footer-bottom {
  display: flex;
  gap: 5px;
  align-items: center;
}

@media screen and (max-width: 480px) {
  .nav-bar {
    justify-content: space-between;
    padding: 1rem;
  }
  .nav-bar .nav-list {
    position: absolute;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    padding: 1rem;
    padding-left: 5rem;
    border-radius: 0.5rem;
    top: calc(100% + 5px);
    right: 5px;
    font-size: 1.2rem;
    box-shadow: 0 0 10px -1px rgba(0, 0, 0, 0.5);
    transform: scale(0);
    transform-origin: top right;
    transition: all 0.1s;
  }
  .nav-bar .active {
    transform: scale(1);
  }
  .nav-bar .mobile-menu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border-radius: 5px;
  }
  .nav-bar .mobile-menu-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .home {
    flex-direction: column-reverse;
    justify-content: center;
    gap: 1.5rem;
  }
  .home-left {
    align-items: center;
  }
  .home-left-header {
    font-size: 1.5rem;
    align-items: center;
  }
  .home-left-header-small {
    font-size: 1rem;
  }
  .home-right {
    width: 70vw;
    height: 70vw;
  }
  .about {
    padding: 1rem;
    gap: 1rem;
  }
  .about-header {
    font-size: 30px;
  }
  .about-content {
    width: 100%;
    flex-direction: column;
    gap: 1rem;
  }
  .about-content img {
    width: 100%;
  }
  .work {
    padding: 1rem;
    gap: 1rem;
  }
  .work-header {
    font-size: 30px;
  }
  .work-content {
    width: 100%;
  }
  .work-content .project {
    flex-direction: column-reverse;
    gap: 1rem;
    border-radius: 0.5rem;
  }
  .work-content .project-explain {
    width: 100%;
  }
  .work-content .project-img {
    width: 100%;
  }
  .work-content .project-img img {
    border-radius: 0.5rem;
  }
  .work-content .project:nth-child(even) {
    flex-direction: column-reverse;
  }
  .experience {
    width: 100%;
    padding: 0 1rem;
  }
  .experience-content .experience-item .bottom .bottom-extra {
    flex-direction: column;
    align-items: start;
  }
  .experience-content .experience-item .bottom .bottom-extra .date {
    margin-top: 1rem;
    align-self: self-end;
  }
  .footer {
    padding: 1rem;
    gap: 1rem;
  }
  .footer-top {
    width: 100%;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .footer-top-left {
    align-items: center;
  }
  .footer .line {
    width: 100%;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  .nav-bar {
    padding: 1rem 5vw;
  }
  .home {
    flex-direction: column-reverse;
    justify-content: center;
    gap: 2rem;
  }
  .home-left {
    align-items: center;
  }
  .home-left-header {
    align-items: center;
  }
  .about {
    padding: 20px 0;
    gap: 20px;
  }
  .about-header {
    font-size: 30px;
  }
  .about-content {
    width: 90vw;
    gap: 20px;
  }
  .about-content img {
    width: 40vw;
  }
  .work {
    padding: 20px 0;
    gap: 20px;
  }
  .work-header {
    font-size: 30px;
  }
  .work-content {
    width: 90vw;
  }
  .work-content .project {
    flex-direction: column-reverse;
  }
  .work-content .project-explain {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .work-content .project-img {
    width: 100%;
  }
  .work-content .project:nth-child(even) {
    flex-direction: column-reverse;
  }
  .experience {
    width: 90vw;
  }
  .footer {
    padding: 1rem 5vw;
  }
}/*# sourceMappingURL=style.css.map */