/* update how links are displayed */
a {
    color: #0a1015;
    text-decoration: none;
}

/* underline links that leave the site; a.ext outranks the flat rule above */
a.ext {
    text-decoration: underline;
}

/* more air between a heading and the text under it */
h2, h3 {
    margin-bottom: 1rem;
}

/* foldable abstract in the research listings */
.abstract-fold > summary {
    cursor: pointer;
    font-style: italic;
}

/* add an image_list class which then can be removed on mobile */
.image_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
}

/* remove image in list on mobile */
@media screen and (max-width: 600px) {
    .image_list {
      visibility: hidden;
      display: none;
    }
  }

/* adjust font size for smaller screen */
/* @media all and (max-width: 600px) {
    body {
      font-size: 70%;
    }
    p {
        font-size: 70%;
    }
    abstract-title {
        font-size: 70%;
    }
    button.scale {
            font-size: 70%;  
            border-radius: 6px;
            padding: 3px 3px
        }
  } */