@import url("https://fonts.googleapis.com/css2?family=Lato&family=Kanit&family=Aldrich&display=swap");
/*Colors*/
/*Gaps*/
/*Breakpoints*/
#personal {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#personal h2 {
  align-self: flex-start;
}

#profile-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 80vw;
  gap: 1rem;
  background-color: var(--main-bg-color);
  color: var(--main-fg-color);
  padding: 2rem;
  -webkit-padding-after: 5rem;
          padding-block-end: 5rem;
  -webkit-clip-path: polygon(97% 2%, 97% 88%, 11% 97%, 3% 89%, 3% 2%);
          clip-path: polygon(97% 2%, 97% 88%, 11% 97%, 3% 89%, 3% 2%);
}
#profile-card p {
  align-self: flex-start;
  justify-self: flex-start;
  line-height: 1.2;
  font-size: 1.1rem;
  margin: 0;
}
#profile-card p:first-child {
  font-weight: bold;
  -webkit-margin-before: 0.5rem;
          margin-block-start: 0.5rem;
  font-size: 2.5rem;
  font-family: "Aldrich", sans-serif;
  -webkit-margin-after: 0.5rem;
          margin-block-end: 0.5rem;
}
#profile-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -webkit-padding-before: 0;
          padding-block-start: 0;
  filter: brightness(0.9);
  -webkit-clip-path: polygon(100% 0, 100% 90%, 10% 100%, 0 86%, 0 0);
          clip-path: polygon(100% 0, 100% 90%, 10% 100%, 0 86%, 0 0);
}
#profile-card #profile-card-text {
  -webkit-padding-start: 5%;
          padding-inline-start: 5%;
}

#profile-border {
  background-color: var(--main-accent-color);
  -webkit-clip-path: polygon(100% 0, 100% 90%, 10% 100%, 0 90%, 0 0);
          clip-path: polygon(100% 0, 100% 90%, 10% 100%, 0 90%, 0 0);
}

.career {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.career .row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.career .career-time p {
  line-height: 1.1;
  display: inline-block;
}
.career .career-part {
  max-width: 60ch;
}
.career .career-subtitle {
  font-family: "Aldrich", sans-serif;
  color: var(--main-accent-color);
  font-size: 1.2rem;
}

@media (min-width: 40rem) {
  .career .career-row {
    display: grid;
    grid-template-columns: 20ch 1fr;
    gap: 2rem;
  }
  .career .career-time p {
    display: block;
  }
  #profile-card {
    gap: 2rem;
    padding: 3rem 2rem;
    flex-direction: row;
    -webkit-clip-path: polygon(99% 2%, 99% 78%, 10% 98%, 1% 89%, 1% 2%);
            clip-path: polygon(99% 2%, 99% 78%, 10% 98%, 1% 89%, 1% 2%);
    width: auto;
  }
  #profile-card p {
    line-height: 1.5;
    margin: 0;
    font-size: 1.2rem;
  }
  #profile-card p:first-child {
    -webkit-margin-before: 0rem;
            margin-block-start: 0rem;
    font-size: 3rem;
    font-family: "Aldrich", sans-serif;
  }
  #profile-card img {
    width: auto;
    height: 13rem;
    filter: brightness(0.9);
    -webkit-clip-path: polygon(100% 0, 100% 90%, 20% 100%, 0 90%, 0 0);
            clip-path: polygon(100% 0, 100% 90%, 20% 100%, 0 90%, 0 0);
  }
  #profile-card #profile-card-text {
    padding: 0;
  }
  #profile-text {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    text-align: justify;
  }
  #profile-border {
    background-color: var(--main-accent-color);
    -webkit-clip-path: polygon(100% 0, 100% 80%, 10% 100%, 0 90%, 0 0);
            clip-path: polygon(100% 0, 100% 80%, 10% 100%, 0 90%, 0 0);
  }
}/*# sourceMappingURL=about.css.map */