body {
    --color: #2d2e5c;
    width: max(80vw, 50em);
    margin-inline: auto;
    font-family: arial;
    background-color: color-mix(in hsl, var(--color) 5%, white);
    margin-bottom: 3em;
}
header {
}
header img {
    object-fit: cover;
    width: 100%;
}

h1.title {
    text-align: center;
    font-weight: bold;
    font-size: 2em;
    color: #2d2e5c;
}

p.description {
    width: max(50vw, 20em);
    margin-inline: auto;
    color: color-mix(in hsl, var(--color) 50%, darkgray);
}

img.large {
    width: 80%;
    margin-left: 10%;
}

p {
    text-align: justify;
}

li::marker {
    color: darkgray;
}
    
nav {
    text-align: center;
}

a {
    color:var(--color);
    text-decoration: none;
}

a:hover {
    border-bottom: 2px solid var(--color);
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    border-top: 2px solid var(--color);
    width: 100%;
    z-index: 1;
    background-color: #ffffffff;
}



iframe {
    margin-inline: auto;
}
