/* import fonts */
/* @import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

/* all formats */

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

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

/* 
alternate way to present list in reverse order
.pubs ol {
    list-style-type: decimal;
    counter-reset: item;
    display: flex;
    flex-direction: column-reverse;
}
*/

ul > li {
    margin-bottom: 0.5ex;
}

.pubs ul {
    list-style-type:none;
    counter-reset: item 66;
}
.pubs ul > li {
    counter-increment:item -1;
    margin-bottom: 1ex;
}
.pubs ul > li:before {
    content: "[" counter(item) "] ";
}

/* 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 print {
  @page {
      size: letter portrait;
      counter-increment: page;
      @bottom-center {
        content: counter(page)
      }
  }
  .no-print {
      display: none;
  }

  .print-only {
      display: block;
  }

  .contact-block {
        margin-top: 0%;
        text-align: center;
    }

  body {
    font-family: Lora, serif;
  }

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

  h2 {
    font-weight: 900;
    font-size: 1.7rem;
    /* color: blueviolet; */
  }

  h3 {
      font-weight: 700;
      font-size: 1.2rem;
      /* color: green; */
  }

  p {
    font-size: 1rem;
  }

  ul li{
    font-size: 90%;
  }

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

}