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

body {
  background-color: #deddeb;
}

h1,
h2,
h3,
h4,
h5,
h5 {
  font-family: "Poppins", sans-serifs;
}

p,
li {
  font-family: "Work Sans", sans-serifs;
}

a {
  font-family: "Work Sans", sans-serifs;
  color: #514e7c;
  text-decoration-color: #514e7c;
  text-decoration-thickness: 0.25em;
  text-underline-offset: 2px;
  transition: all 0.5s;
  text-decoration-skip-ink: none;
}

a.inline-link {
  font-family: "Work Sans", sans-serifs;
  color: #514e7c;
  text-decoration: none;
  transition: all 0.5s;
}

a:hover {
  color: #fb225a;
  text-decoration-color: #fb225a;
  text-decoration-thickness: 0.25em;
  text-underline-offset: 2px;
  transition: all 0.3s;
}

.header-container {
  background-color: #deddeb;
}

.header {
  scroll-behavior: smooth;
}
.header__logo {
  text-decoration: none;
}
.header__logo p {
  font-family: "Poppins", sans-serifs;
  font-size: 1.5rem;
  font-weight: 700;
  color: #030137;
  text-decoration: none;
  transition: color 0.5s;
}
.header__logo p:hover {
  color: #fb225a;
  transition: color 0.3s;
}
.header__socials {
  margin: 0 auto;
}
.header__socials a:link {
  font-family: "Work Sans", sans-serifs;
  color: #030137;
  text-decoration: none;
}
.header__socials a:visited {
  font-family: "Work Sans", sans-serifs;
  color: #030137;
}
.header__socials a:hover,
.header__socials a:active {
  font-family: "Work Sans", sans-serifs;
  color: #fb225a;
  transition: 0.3s;
}
.header__socials svg {
  fill: #030137;
  transition: 0.5s;
}
.header__socials svg:hover {
  fill: #fb225a;
  transition: 0.3s;
}
.header__navigation {
  text-align: right;
}
.header__navigation a:link {
  font-family: "Work Sans", sans-serifs;
  color: #030137;
  text-decoration: underline 0.2em rgba(251, 34, 90, 0);
  text-decoration-thickness: 0.25em;
  text-underline-offset: 2px;
  transition: all 0.5s;
}
.header__navigation a:visited {
  font-family: "Work Sans", sans-serifs;
  color: #030137;
  text-decoration: none;
}
.header__navigation a:hover,
.header__navigation a:active {
  font-family: "Work Sans", sans-serifs;
  color: #fb225a;
  text-decoration: underline 0.2em rgb(251, 34, 90);
  text-decoration-thickness: 0.25em;
  text-underline-offset: 2px;
  transition: all 0.3s;
}

.hero__header {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.75rem;
  font-family: "Poppins", sans-serifs;
}
.resume-container {
  background-color: #f0eff5;
}

.portfolio__table-of-contents ul {
  list-style: outside none none;
}

.project {
  border-radius: 16px;
  background-color: #f0eff5;
  border: #032074 3px dashed;
  box-shadow: 8px 8px #a5a5d7;
}

.resume-item__subtitle {
  font-size: 0.875rem;
}

body {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 3.75rem auto;
  grid-template-areas: "header" "hero" "resume" "portfolio" "footer";
}

.header-container {
  grid-area: header;
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(20px, 1fr) minmax(320px, 800px) minmax(20px, 1fr);
  grid-template-rows: auto;
  grid-template-areas: "... content ...";
}

.header {
  grid-area: content;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-template-areas: "logo socials navigation";
  align-items: center;
}
.header__logo {
  grid-area: logo;
}
.header__socials {
  grid-area: socials;
}
.header__socials a {
  padding-left: 8px;
}
.header__navigation {
  grid-area: navigation;
}
.header__navigation a:link {
  padding-left: 16px;
}
.header__mobile {
  display: none;
}

@media screen and (max-width: 480px) {
  .header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-top: 0.8rem;
  }
  .header__socials, .header__navigation {
    display: none;
  }
  .header__mobile {
    display: flex;
    grid-area: hamburger;
    align-items: end;
    flex-direction: column;
  }
  .header__mobile--hamburger {
    display: inline-block;
    cursor: pointer;
    background-color: transparent;
    border: none !important;
    padding: 0;
  }
  .header__mobile--hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 4px 0;
  }
  .header__mobile--menu {
    display: none;
    background-color: #deddeb;
    padding: 8px;
    border-radius: 3%;
  }
  .header__mobile--menu ul {
    list-style-type: none;
    padding: 0;
  }
  .header__mobile--menu li {
    margin: 10px 0;
  }
  .header__mobile--menu a {
    text-decoration: none;
  }
  .header__mobile--menu-visible {
    display: flex;
    align-items: end;
    margin-top: 15px;
    border: #66669a 2px dashed;
    box-shadow: 6px 6px #a5a5d7;
  }
}
.link {
  margin-top: -5rem;
  padding-bottom: 5rem;
  display: block;
}

.hero-container {
  grid-area: hero;
  display: grid;
  grid-template-columns: minmax(20px, 1fr) minmax(320px, 800px) minmax(20px, 1fr);
  grid-template-rows: auto;
  grid-template-areas: "... content ...";
  margin-bottom: 80px;
  margin-top: 32px;
}

.hero {
  grid-area: content;
  display: grid;
  grid-template-columns: 1fr 340px;
  grid-template-rows: 6.25rem auto;
  grid-template-areas: "header image" "body image";
}
.hero__header {
  grid-area: header;
  padding-top: 3.125rem;
}
.hero__body {
  grid-area: body;
  padding-top: 3.125rem;
  margin-right: 2rem;
  line-height: 1.5625rem;
}
.hero__image {
  grid-area: image;
  width: 340px;
  border-radius: 100%;
}

@media (max-width: 480px) {
  .hero {
    display: flex;
    flex-direction: column;
  }
  .hero__image {
    flex-basis: 100%;
  }
}
.resume-container {
  grid-area: resume;
  display: grid;
  grid-template-columns: minmax(20px, 1fr) minmax(320px, 800px) minmax(20px, 1fr);
  grid-template-rows: auto;
  grid-template-areas: "... content ...";
}

.resume {
  margin-bottom: 80px;
  padding-top: 80px;
  grid-area: content;
}
.resume h2 {
  padding-bottom: 60px;
}

.resume-item {
  margin-bottom: 32px;
}
.resume-item__headline {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .resume-item__headline {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 0.5rem;
  }
}
.resume-item__description {
  padding-top: 8px;
}
.resume-item__list {
  padding-left: 32px;
}
.resume-item__list-item {
  padding-top: 8px;
}

.portfolio-container {
  grid-area: portfolio;
  display: grid;
  grid-template-columns: minmax(20px, 1fr) minmax(320px, 800px) minmax(20px, 1fr);
  grid-template-rows: auto;
  grid-template-areas: "... content ...";
}

.portfolio {
  margin-bottom: 80px;
  padding-top: 80px;
  grid-area: content;
}
.portfolio__header {
  padding-bottom: 32px;
}
.portfolio__table-of-contents {
  padding-bottom: 60px;
}
.portfolio__table-of-contents h3 {
  padding-bottom: 16px;
}
.portfolio__table-of-contents li {
  padding-bottom: 16px;
}

.project {
  padding: 0px 16px;
  margin-bottom: 60px;
}
.project span {
  padding-right: 16px;
  padding-left: 16px;
}
.project__header {
  padding-bottom: 16px;
}
.project__links {
  padding-bottom: 32px;
}
.project p {
  padding-bottom: 16px;
}
.project ul {
  padding-left: 16px;
  padding-bottom: 16px;
}
.project li {
  padding-bottom: 8px;
}
.project img {
  float: right;
  margin-left: 32px;
  margin-bottom: 32px;
}
.project .mobile-image {
  width: 200px;
}
.project .desktop-image {
  width: 400px;
}
@media screen and (max-width: 480px) {
  .project .mobile-image,
  .project .desktop-image {
    display: none;
  }
}

.footer {
  grid-area: footer;
}

/*# sourceMappingURL=style.css.map */
