/* normalizations, inspired by tailwindcss */
body {
  margin: 0; }

a {
  color: inherit;
  text-decoration: inherit;
  background-color: transparent; }

blockquote, dd, dl, figure, h1, h2, h3, h4, h5, h6, hr, p, pre {
  margin: 0; }

*, ::after, ::before {
  box-sizing: border-box;
  /* border-width: 0; */
  /* border-style: solid; */
  /* border-color: #e2e8f0; */ }

html, body {
  background-color: #e5e5e5; }

@media print {
  html, body {
    background-color: white; } }

/* for A4 */
/* #outer-wrapper { */
/* width: 21cm; */
/* height: 29.7cm; */
/* } */
#outer-wrapper {
  margin: auto;
  min-height: 1000px;
  background-color: white;
  box-shadow: 0px 0px 3px gray;
  display: block;
  width: 100%; }

@media (min-width: 900px) {
  #outer-wrapper {
    width: 900px; } }

@media print {
  #outer-wrapper {
    box-shadow: none;
    width: 100%; } }

header {
  width: 100%;
  display: flex;
  flex-direction: column; }

@media (min-width: 650px) {
  header {
    flex-direction: row; } }

@media print {
  header {
    flex-direction: row; } }

header section#profile-photo-wrapper {
  background-color: #238cbb;
  width: 100%; }

@media (min-width: 650px) {
  header section#profile-photo-wrapper {
    width: 350px; } }

@media print {
  header section#profile-photo-wrapper {
    width: 350px; } }

header section#profile-photo-wrapper img {
  width: 100%;
  max-width: 110vh;
  height: auto;
  display: block;
  margin: auto; }

header section#contact-data-box {
  background-color: #238cbb;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  padding: 20px 20px; }

@media (min-width: 650px) {
  header section#contact-data-box {
    padding: 0px 30px; } }

@media print {
  header section#contact-data-box {
    padding: 0px 30px; } }

header section#contact-data-box h3 {
  font-family: "Open Sans Condensed", sans;
  font-size: 16pt;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 13pt;
  padding: 0;
  margin: 0;
  margin-bottom: 15px; }

header section#contact-data-box div#contact-data {
  display: grid;
  grid-template-columns: max-content 1fr;
  row-gap: 8px;
  column-gap: 10px;
  font-family: "Roboto Mono", mono;
  font-size: 11pt; }

@media (min-width: 992px) {
  header section#contact-data-box div#contact-data {
    row-gap: 15px; } }

header section#contact-data-box div#contact-data img {
  grid-column: 1 / 2;
  align-self: center;
  width: 30px; }

header section#contact-data-box div#contact-data span {
  grid-column: 2 / 3;
  align-self: center; }

main {
  flex: 1;
  padding: 15px 20px; }

@media (min-width: 992px) {
  main {
    padding: 35px 50px; } }

@media print {
  main {
    padding: 35px 50px; } }

@media print {
  main section#education {
    break-before: always;
    page-break-after: always; }
  main section#services {
    padding-top: 40px; } }

main section#summary {
  margin-bottom: 20px; }

main section#summary h1.fullname {
  font-family: "Open Sans Condensed", sans;
  font-size: 16pt;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 22pt; }

main section#summary h3.profession {
  font-family: "Montserrat", sans;
  font-size: 11pt;
  font-style: italic;
  font-weight: 300;
  margin-top: 5px; }

main section#summary div.summary-text {
  font-family: "Amiri", serif;
  font-size: 13pt;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-top: 15px; }

@media (min-width: 650px) {
  main section#summary div.summary-text {
    text-align: justify; } }

main .section-header-wrapper {
  display: flex;
  flex-direction: row; }

main .section-header-wrapper h1 {
  font-family: "Open Sans Condensed", sans;
  font-size: 16pt;
  font-weight: bold;
  text-transform: uppercase; }

main .section-header-wrapper .divider {
  flex: 1;
  border-bottom: 2px solid #238cbb;
  margin-left: 20px;
  box-sizing: border-box;
  margin-bottom: 7px; }

main .timespan-content-wrapper {
  display: grid;
  padding: 20px 0;
  grid-row-gap: 20px;
  grid-template-columns: 18% 1fr; }

@media (min-width: 480px) {
  main .timespan-content-wrapper {
    grid-template-columns: 110px 1fr; } }

main .timespan-content-wrapper .timespan {
  grid-column: 1 / 2;
  font-family: "Montserrat", sans;
  font-weight: 400;
  font-size: 12pt; }

@media (max-width: 480px) {
  main .timespan-content-wrapper .timespan > span {
    display: block; }
  main .timespan-content-wrapper .timespan > span:nth-child(2) {
    margin-left: 1em; } }

main .timespan-content-wrapper .timespan-content {
  grid-column: 2 / 3; }

main .timespan-content-wrapper .timespan-content h2 {
  font-family: "Open Sans", sans;
  font-size: 12pt;
  font-weight: bold;
  margin-top: -3px; }

main .timespan-content-wrapper .timespan-content h3 {
  font-family: "Montserrat", sans;
  font-size: 11pt;
  font-style: italic;
  font-weight: 300;
  margin: 8px 0; }

main .timespan-content-wrapper .timespan-content ul.tags {
  padding-left: 0;
  margin: 0px; }

main .timespan-content-wrapper .timespan-content ul.tags li {
  display: inline;
  padding: 4px 8px;
  background-color: #eaeaea;
  font-family: "Open Sans", sans;
  font-style: italic;
  font-size: 11pt;
  margin: 0 0px;
  line-height: 2.5;
  border-radius: 3px; }

main .timespan-content-wrapper .timespan-content p {
  font-family: "Amiri", serif;
  font-size: 13pt;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word; }

@media (min-width: 650px) {
  main .timespan-content-wrapper .timespan-content p {
    text-align: justify; } }

.section-content {
  font-family: "Amiri", serif;
  font-size: 13pt;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-top: 10px; }

@media (min-width: 650px) {
  .section-content {
    text-align: justify; } }

ul.abilities {
  font-family: "Amiri", serif;
  font-size: 13pt;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding-left: 22px; }

@media (min-width: 650px) {
  ul.abilities {
    text-align: justify; } }

span.verb {
  font-style: italic;
  /* text-decoration: underline; */ }
