@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Roboto+Mono:wght@200;400;500;700&family=VT323&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;500&display=swap");
.header {
  background-color: #222;
  position: sticky;
  top: 0;
  padding: 1.25rem;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .header {
    padding: 0.8rem;
  }
}
.header-aside {
  position: absolute;
  top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
}
@media screen and (max-width: 992px) {
  .header-aside {
    position: unset;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}
.header-aside--link {
  display: inline-block;
}
@media screen and (max-width: 992px) {
  .header-aside--link--txt {
    display: none;
  }
}
.header-intro {
  text-align: center;
}
@media screen and (max-width: 992px) {
  .header-intro {
    font-size: 0.7rem;
  }
}
.header-intro--title {
  font-size: 2.5em;
}
.header-intro--subtitle {
  font-size: 1.25em;
  font-weight: 200;
  color: #fcbf49;
}
.header-intro--location {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
}

.main {
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 800px;
  line-height: 1.6;
}
@media screen and (max-width: 992px) {
  .main {
    padding: 0 1rem;
  }
}
.main-section {
  margin: 2.5rem 0;
}
.main-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.main-section-header--title {
  color: #fcbf49;
  font-size: 2rem;
  font-weight: 500;
  line-height: 120%;
}
.main-section-header--line {
  height: 2px;
  background-color: #ddd;
  opacity: 0.2;
  flex-grow: 1;
  margin-top: 0.5rem;
}
.main-section-body--heading {
  margin: 2rem 0 1rem;
  font-size: 1.25rem;
  font-weight: 500;
}
.main-section-body p, .main-section-body ul {
  margin-bottom: 1rem;
  font-family: "inter", sans-serif;
  line-height: 1.5;
}
.main-section-body p:last-child, .main-section-body ul:last-child {
  margin-bottom: 0;
}
.main-section-body ul {
  padding-left: 1rem;
  list-style: circle;
}

.cv-item {
  margin-top: 1.5rem;
  display: grid;
  grid-template: "h h h h l l" "b b b b b b";
  gap: 0 2rem;
}
@media screen and (max-width: 600px) {
  .cv-item {
    grid-template: "l l l l l l" "h h h h h h" "b b b b b b";
    margin-top: 2rem;
  }
}
.cv-item-header {
  grid-area: h;
}
.cv-item-header--title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 200;
  color: #fcbf49;
}
.cv-item-header--subtitle {
  font-weight: 500;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.cv-item-body {
  grid-area: b;
}
.cv-item-location {
  grid-area: l;
  margin-top: 0.4rem;
  text-align: right;
  font-style: italic;
  line-height: 1.4;
}
.cv-item-location--title {
  color: #fcbf49;
  font-size: 0.9rem;
}
.cv-item-location--subtitle {
  display: block;
  font-weight: 500;
  font-size: 0.8rem;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "roboto mono", monospace, monospace;
  font-weight: 200;
  background-color: #222;
  color: #ddd;
  margin: 0;
}
body a {
  transition: all ease 0.2s;
  color: #879bff;
  text-decoration: none;
}
body a:hover {
  color: #5d76f6;
}

@media print {
  @page {
    margin: 2rem 0;
  }
  * {
    color: black;
    font-family: "Ubuntu", sans-serif;
    line-height: 1.3;
  }

  html {
    font-size: 12px;
  }

  body {
    background-color: #fff;
    font-weight: 400;
  }
  body p, body .cv-item {
    break-inside: avoid;
  }
  body .header {
    padding: 0;
    position: unset;
  }
  body .header-intro--title {
    line-height: 1;
  }
  body .header-aside {
    position: unset;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    font-size: 1rem;
  }
  body .main-section {
    margin: 2.5rem 0;
  }
  body .main-section-header {
    margin-bottom: 0.75rem;
    break-after: avoid;
  }
  body .main-section-header--title {
    color: black;
    margin: 0;
  }
  body .main-section-header--subtitle {
    color: black;
    margin: 0;
  }
  body .main-section-header--line {
    height: 0;
    border: 1px solid;
  }
  body .main-section-body p {
    margin-bottom: 0.5rem;
    font-family: "ubuntu", sans-serif;
  }
  body .main-section-body p, body .main-section-body ul {
    line-height: 1.3;
  }
  body .cv-item:first-child {
    margin-top: 0;
  }
  body .cv-item-header--title {
    font-weight: 700;
    color: black;
  }
  body .cv-item-location--title {
    color: black;
  }
}

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