/* import fonts */
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@300;400;500;700&display=swap');

/* all formats */

.cvdate {
  float: right;
  font-style: italic
}

.print-only {
  display: none;
  /*color: aquamarine;*/
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.2em;
}

body {
  text-align: justify;
}

/* adapt stylesheet for print
from: https://github.com/quarto-dev/quarto-cli/discussions/2538#discussioncomment-4081842 */

/* for page-breaks use style spans
  page-break-before: always;
  page-break-after: always;
*/

@media screen {
  h1.title {
    display: none;
  }
}

@media print {
  @page {
      size: a4 portrait;
      margin-top: 1cm;
      margin-bottom: 1cm;
      margin-left: 1cm;
      margin-right: 1cm;
      counter-increment: page;
      @bottom-center {
        content: counter(page)
      }
  }
  .no-print {
      display: none;
  }
  .print-only {
      display: block;
  }

  .contact-block p:first-child {
  margin-top: 0;
  padding-top: 0;
  text-align: center;
  line-height: 1.2; /* related to space between title and contact block */
  margin-bottom: 3em;
}

  html {
    font-family: 'Public Sans', sans-serif;
  }

  header {
    margin-block-end: 0em;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  header h1.title {
      display: none;
  }
  header .author {
    font-size: 2em;
    font-weight: 900;
    color: black;
    text-align: center;
    margin-block-end: 0em;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
  }

  h2 {
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid black;
    padding-bottom: 1px;
    /* color: blueviolet; */
  }

  h3 {
    font-size: 0.9em;
    font-weight: 500;
    text-transform: uppercase;
    /* color: green; */
  }

  p {
    font-size: 10pt;
  }

  ul li{
    font-size: smaller;
  }

  a {
    text-decoration: none;
    /* font-weight: 700; */
    color: #36a7e9; 
  }
}