@font-face {
    font-family: "Bellefair";
    src: url("/fonts/Bellefair-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

html {
    font-family: Bellefair;
    font-size: x-large;
    margin: 0;
    padding: 0;
}

body {
    box-sizing: border-box;
    text-align: left;
    word-wrap: break-word;
    hyphens: auto;

    margin-bottom: 1rem;
    margin-top: 1rem;

    /* font-size: large; */

    background-image:
        url("/images/Jacqueline-Chasserant-Coquelicots-1-960.png"),
        url("/images/Jacqueline-Chasserant-Coquelicots-2.png");
    background-repeat: no-repeat, no-repeat;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

header h1 {
    font-size: 240%;
}

footer {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    clear: both;
}

h1,
h2 {
    font-weight: normal;
}

header {
    text-align: center;
}

main h1 {
    text-align: center;
}

a,
a:visited {
    color: rgb(150, 50, 0);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    display: block;
    margin: auto;
    width: calc(100vw - 6rem);
}

main ul {
    display: table;
    border-spacing: 0em 0.75em;
    margin: auto;
    padding: 0;
}

main li {
    display: table-row;
}

main li > * {
    display: table-cell;
    vertical-align: middle;
}

main ul li :first-child {
    text-align: right;
    border-right: 1px solid rgb(150, 50, 0);
    padding-right: 0.5rem;
}

main ul li :last-child {
    text-align: left;
    padding-left: 0.5rem;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

nav a {
    border: none;
    padding: 0;
}

address {
    font-style: normal;
    text-align: center;
    margin-top: 1rem;
}

iframe {
    margin-top: 1rem;
}

@media (min-width: 1441px) {
    body {
        margin-left: 15rem;
        margin-right: 15rem;
        background-position:
            top left,
            bottom right;
        background-size:
            20rem auto,
            15rem auto;
    }

    img {
        width: calc(100vw - 36rem);
    }
}

@media (max-width: 1440px) {
    body {
        margin-left: calc(50vw - 15rem);
        margin-right: calc(50vw - 15rem);
        background-position:
            top 0vw left calc(-9rem + 15vw),
            bottom 0vw right calc(-6rem + 10vw);
        background-size:
            33vw auto,
            25vw auto;
    }

    img {
        width: 24rem;
    }
}

@media (max-width: 768px) {
    body {
        margin-left: 1rem;
        margin-right: 1rem;
        background-position:
            top 0vw left -4rem,
            bottom 0vw right -3rem;
        background-size:
            10rem auto,
            8rem auto;
    }

    img {
        width: calc(100vw - 8rem);
    }
}
