html {
  font-family: "SUIT", sans-serif;
}

header {
  position: fixed;
  width: calc(100vw - 8rem);
  min-height: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4rem;
  background-color: #fcf6fa;
  z-index: 100;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.08);
}

main {
  color: #080202;
  font-family: "SUIT", sans-serif;
  width: 800px;
  margin: 0 auto;
  padding: 10rem 0;

  /* background-color: #fefbfc; */
}
section {
  padding-top: 12rem;
}
a {
  border-bottom: 1px solid transparent;
}
a:hover,
a:active {
  border-bottom: 1px solid #333;
}
h1 {
  font-size: 4rem;
  font-weight: 900;
  margin: 10rem 0 0;
}
h1 > span {
  color: #73bbc9;
}
h2 {
  color: #73bbc9;
  font-size: 2.4rem;
  margin-bottom: 2.4rem;
  padding: 1rem;
  font-weight: 900;
  border-bottom: 2px solid #73bbc9;

  display: flex;
  gap: 0.6rem;
  align-items: center;
}
h3 {
  font-size: 2.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  border-radius: 10px;
}
ion-icon {
  font-size: inherit;
}
iframe {
  border-radius: 10px;
  margin: 2rem 0;
}

.header-title {
  font-size: 2.2rem;
  font-weight: 900;
  border: none;
}
.header-title:hover,
.header-title:active {
  font-size: 2.2rem;
  font-weight: 900;
  border: none;
}
.header-title > span {
  color: #73bbc9;
}
.header-menu {
  display: flex;
  gap: 2.6rem;
  font-size: 1.8rem;
  font-weight: 700;
}
.header-menu > a:hover,
.header-menu > a:active {
  color: #73bbc9;
  border: none;
}

.sparkles-icon {
  font-size: 2.6rem;
}

.profile-box {
  color: #333;
  font-size: 1.6rem;
  font-weight: 500;

  display: flex;
  gap: 6.8rem;
  padding: 2.6rem 4rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  background-color: #fce9f1;
}
/* .profile-pic-wrap {
    width: 18rem;
    height: 18rem;
    overflow: hidden;
} */
.profile-pic {
  width: 18rem;
  height: 24rem;
  border-radius: 10px;
  object-fit: cover;
  overflow: hidden;
}
.profile-box > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.8rem;
}
.profile-box > div > span {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.like-box {
  border: 1px solid #f1d4e5;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.like-title {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* skills */
.skill-box {
  color: #333;
  font-weight: 500;

  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 12rem;
  row-gap: 2.4rem;
  margin-bottom: 1rem;
  border-radius: 10px;
}
.skill-type {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 900;
  margin: 1.4rem 0;
}
.skill-tag {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0.4rem 0.6rem 0;
  padding: 0.4rem 1.4rem;
  border-radius: 6px;
  background-color: #fff;
  background-color: #f1d4e5;
}
.studying-skills {
  grid-column: 1 / 3;
}
.studying-skills .skill-tag {
  border: 2px solid #f1d4e5;
  background-color: #fff;
}

/* project */
.project-wrap {
  /* border: 2px solid #F1D4E5; */
  border-radius: 10px;
  margin-bottom: 2rem;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  gap: 6rem;
}

.project-img-wrap {
  width: 24rem;
  height: 24rem;
  border-radius: 10px;
  border: 0.2rem solid #fce9f1;
  overflow: hidden;
  object-fit: cover;

  display: flex;
  justify-content: center;
}
.project-img-wrap > img {
  height: 24rem;
}

.project-desc-ul {
  min-height: 20rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;

  /* border: 2px solid #FCE9F1;
    border-radius: 10px; */
}
.project-title {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  margin-bottom: 1rem;
}
.detail-btn {
  min-width: 10rem;
  height: 2.8rem;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.8rem;
  font-weight: 700;
  color: #fff !important;
  background-color: #73bbc9;
  border-radius: 10px;
  border: none;
}
.detail-btn:hover,
.detail-btn:active {
  border: none;
  background-color: #f1d4e5;
}
.project-desc {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
