#main-thumbnail {
    position: relative;
    height: 400px;
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #main-navigation {
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        color: #fff;
        z-index: 1;
        a {
            color: #fff;
        }
    }
    h1 {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        /*font-family: "Lora", serif;*/
        font-size: 80px;
        text-align: center;
        color: #fff;
        text-shadow: 0 0 8px rgba(0,0,0,0.8);
        opacity: 0;
        transform: translateY(-10%);
        animation: ease 1.5s appearance forwards;
    }
}

@keyframes appearance {
    to {
        opacity: 100%;
        transform: translateY(0);
    }
}

article {
    margin-top: 10px;
    font-family: "Source Serif 4", serif;
    font-size: 18px;
    max-width: 980px;
    line-height: 1.4;
    .encadre {
        border: 2px solid #000;
        outline: 1px solid #000;
        outline-offset: -8px;
        padding: 20px;
        font-family: "EB Garamond", serif;
        h2 {
            margin: 0;
            text-align: unset;
            font-size: 22px;
            color: var(--normal-text);
        }
    }
    h2, h3 {
        font-family: "Lora", serif;
        font-style: italic;
    }
    h2 {
        text-align: center;
    }
}

main {
    display: flex;
    justify-content: center;
}

aside {
    position: fixed;
    top: 200px;
    left: 100%;
}
