body,
html {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

/* colors */

:root {
    --primary-color : #aad400;
    --secondary-color: #faab21;
    --primary-text-color: #7e9e00;
    --secondary-text-color: #333;
    --background-color: white;
    --max-page-with: 980px;
}


body {
    font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    font-size: 13pt;
    line-height:1.5rem;
}


h1 {
    color: var(--primary-text-color);
    margin-bottom: 0.75em;
    margin-top: 2em;
    font-size: 32pt;
    line-height:3.0rem;
}

h2 {
    color: var(--secondary-text-color);
    font-family: "IBM Plex Sans", "sans-serif";
    font-weight: 700;
    margin-top: 2em;
}

h3 {
    color: var(--primary-text-color);
    font-family: "IBM Plex Sans", "sans-serif";
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 8px;
}

.text-xl {
 font-size: 16pt;
}

.text-2xl {
    font-size: 18pt;
    line-height:1.8rem;
}

.text-3xl {
    font-size: 20pt; 
    line-height:2.2rem;
}

a {
    color: black;
    text-decoration: solid;
    font-weight: 500;
    color: var( --primary-text-color);
}
a:visited {
    color: var( --primary-text-color);
}

a:hover {
    color: var(--secondary-color);
    cursor: pointer;
    color: #faab21;
}

p {
    margin-top: 0pt;
    line-height:1.5rem;
}

#main {
    width: 100vw;
    min-height: 100vh;
    background-color: var(--background-color);
    justify-content: space-between;
    margin: 0;
}


#page {
    display: flex;
    flex-direction: column;
    width: var(--max-page-with);
    min-height: 99.5vh;
    margin-left: auto;
    margin-right: auto;
}

#footer-page {
    width: var(--max-page-with);
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 980px) {
    #page {
        width: 100%;
        padding: 1em;
    }
    #footer-page{
        width: 100%;
    }

    h1 {
        margin-bottom: 0.75em;
        margin-top: 1em;
        font-size: 28pt;
        line-height:2.8rem;
    }

    h2 {
        margin-top: 1.7em;
    }

    .text-xl {
        font-size: 14pt;
    }

    .text-2xl {
        font-size: 16pt;
        line-height:1.8rem;
    }

    .text-3xl {
        font-size: 18pt; 
        line-height:2.2rem;
    }

}

#content {
    flex-grow: 1;
}

nav {
    padding-top: 1em;
    align-items: center
}

nav ul {
  list-style: none;
  display: flex;
}


nav li {
    margin-left: 1em;
}

footer {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    padding-bottom: 1em;
    background-color: rgb(245, 245, 247);
}
footer ul { 
    list-style: none;
}
 
footer  span {
    padding: 20px;
}
 
.red {
    background-color: red;
}

.grow {
    flex-grow: 1;
}

.flex {
    display: flex;
}

.flex-wrap {
     flex-wrap: wrap;
}
.row {
    flex-direction: row;
}
.col {
    flex-direction: row;
}

.text-center {
    text-align: center;
}
#content {
    width: 100%;
}

figure {
    max-width: 100%;
    margin: 0 auto;
    margin-top: 2em;
    text-align: center;
    font-style: italic;
    font-size: smaller;
    text-indent: 0;
}

figure.small {
    max-width: 30%;
    float: right;
    margin-left: 1em;
}

figure.medium {
    max-width: 80%;
}

 

figure img {
    width: 100%;
    height: auto;
    object-fit: contain
}

.flipped img {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

section {
    padding: 1em;
}

.items-end {
    align-items: end;
}
.mr-8 {
    margin-right: 8px;
}
.mt-4 {
    margin-top: 4px;
}
.mb-4 {
    margin-top: 4px;
}
ml-6 {
    margin-left: 6px;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ddd;
    margin: 1em 0;
    padding: 0;
    margin-left: 10px;
}

section {
    margin: 0;
    padding: 0;
    margin-top: 3em;
    margin-bottom: 3em;
}
.section-caption {

    color: #7e9e00;
    margin-bottom: 0.75em;
    font-weight: 700;
    font-size: 36px;
}

img .scaleable {
    width: 100%;
    height: auto;
}

.no-bullet ul {
    list-style: none;
}

table {
  margin-top: 2rem;
  border-spacing: 0;
  border-collapse: collapse
}

td {
  border: 1pt solid var(--primary-text-color);
  padding: 1.5em;
  margin: 0;
}

td:first-child,
th:first-child {
  border-left: none;
}

td:last-child,
th:last-child {
  border-right: none;
}

tr:last-child {
  border-bottom: none;
}

