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

:root {
    --main-font: "EB Garamond", serif;
    --InvertFilter: 0%;
    filter: invert(var(--InvertFilter));
}

::selection {
    background-color: rgba(204, 204, 204, 0.5);
    color: #595959;
}

.no-invert {
    filter: invert(100%);
}

html{
    overscroll-behavior: none;
}

body {
    background: white;
    margin-left: 8%;
    margin-right: 8%;
    margin-top: 2%;
    padding: 30px;
    font-size: 20px;
    display: flex;
}

/* Normal text */
h1{
    font-family: var(--main-font), serif;
    font-weight: 500;
    text-align: center;
}
h2 {
    font-family: var(--main-font), serif;
    font-weight: 400;
    text-align: center;
    padding-top: 15px;
}
p{
    font-family: var(--main-font), serif;
    text-align: justify;
    line-height: 1.7;
}
ul{font-family: var(--main-font), serif;
    text-align: justify;
    line-height: 1.7}

/* Link text */
a {
    color: inherit;
    text-decoration: inherit;
}
a:hover {
    color: #616161;
    font-style : italic;
}

hr {
    border: none;
    border-top: 1px solid #000000;;
    margin-bottom: 23px;
    margin-top: 17px;
    margin-left: 10px;
    margin-right: 10px;
}


/* Text classes */
.shortform_1{text-align: center; font-size: 25px; padding-top: 20px;}
.shortform_2{text-align: justify; font-size: 25px; padding-top: 20px;}
.greyed_out{color: grey;}


