@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

body {
    font-family: "Libre Baskerville", serif;
    font-size: 0.9em;
    margin: 1em;
    background-color:#FAFAFA;

}

a {
    color: #012c44;
    position: relative;
    text-decoration: underline;
}

a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    border-radius: 2px;
    background-color: #012c44;
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .17s ease-in-out;
}

a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.norm-a{
    all: unset;
}

.norm-a::before{
    all: unset;
}

.norm-a:hover::before{
    all: unset;
}

.card {
    /* max-width: 300px; */
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  
    max-width: 90%;
    /* max-width: 500px;
    height: 300px; */
    padding: 35px;
  
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.25);
  
    backdrop-filter: blur(15px);
}

img {
    max-width: 95%;
}

.id{
    font-weight: 700;
}

.lstlisting{
    background-color: #F2F2EB;
}

.chapterToc{
    font-weight: 700;
}

.sectionToc {
    margin-left: 1em;
}

.subsectionToc {
    margin-left: 1.5em;
}

.sectionHead{
    text-decoration: underline;
}