
html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.4rem;
}

h1, h2, h3, .fancy {
    font-family: 'Inria Serif', serif;
}


.text-sm { 
    font-size: 1rem !important;
    line-height: 1.6rem !important;
    font-weight: 300 !important;
}

hr {
    border-top-width: 4px !important;
}

span.tag-cards {
    line-height: 0.75rem !important;
}

ul li {
    margin-bottom: 0.875rem;
}

a.link-decoration{
    text-decoration: underline !important; 
    text-decoration-style: dotted !important;
    color:black !important;
}

a{
    text-decoration: none !important; 
}
/* home cards hover - image increase on hover */

.image-container {
    overflow: hidden;
  }
  .image-container img {
    transition: transform 0.3s ease;
  }
  .card-container:hover .image-container img {
    transform: scale(1.1);
}