:root {
    --background-color: #fffcfaff;
    --text-color: #0D5F49;
}

@font-face {
    font-family: 'romanantique';
    src: url('./roman_antique/RomanAntique.ttf');
}
@font-face {
    font-family: 'romanantiqueitalic';
    src: url('./roman_antique/RomanAntique-Italic.ttf');
}

body {
    margin: 0px;
    font-family: romanantique;
    background-color: #ffffff;
    background-image: url("motif_fleuri_crop_vert.png");
    background-size: cover;
    background-attachment: fixed;
    color: var(--text-color);
    font-size: 20px;
    line-height: 1.1;
}

header {
    background-color: var(--background-color);
    position: fixed;
    width: 100%;
    display: grid;
    grid-template-columns: 230px 1fr;
    top: 0px;
}

#toplogo {
    padding-top: 5px;
}

nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}



nav > a {
    /*flex: 1 70px;*/
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 20px;
    margin-right: 15px;
    margin-left: 15px;
}

#menutext {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 20px;
    font-family: romanantiqueitalic;
    font-size: 38px;
}

.burger {
    display: none;
    position: absolute;
    top: 20px;
    right: 30px;
    height: 25px;
    width: 40px;
}

.burger > rect {
    fill: var(--text-color);
    x: 0px;
    width: 100px;
    height: 10px;
    rx: 5px;
    transition: all 0.5s;
    transform-origin: center;
}


@media screen and (width < 700px) {
    nav {
        display: none;
        padding-top: 30px;
        padding-bottom: 60px;
        flex-direction: column;
        position: absolute;
        top: 0px;
        left: 0px;
        background-color: var(--background-color);
        width: 100%;
        height: 100vh;
        box-sizing: border-box;
    }
    nav > a {
        font-size: 24px;
    }
    .burger {
        display: block;
    }
}


section {
    /* width: 95%;
    max-width: 800px; */
    width: calc(min(95%, 60% + 200px));
    box-sizing: border-box;
    margin: auto;
    margin-top: 100px;
    background-color: var(--background-color);
    /* padding: 40px min(100px, 10%) 40px min(100px, 10%); */
    padding: 40px 10% 40px 10%;
    text-align: center;
    min-height: calc(100vh - 100px);
}

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

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
