body {
    font-family: 'Oswald', sans-serif;
    background: #f7e8ec;
    color: black;
    margin: 0;
}

/*HEADER*/
header {
    font-size: 1.3em;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 25px;
    position: sticky;
    top: 0;
    left: 0;
    padding-bottom: 5px;
    background: linear-gradient(#b96c82, rgb(248, 229, 233, 0));
}

header a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 20px;
    text-shadow: 3px 3px 5px #944456;
    border: 2px solid #e799ac;
    border-radius: 5px;
    background: #e799ac;
    transition-property: transform;
    transition-duration: 200ms;
    /*aussi juste -> transition: transform 200ms; */
}

header .logo {
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 5px;
}

/*MAIN*/
main a {
    text-decoration: none;
    color: #b96c82;
}

h1, h2, h3 {
    font-family: "Permanent Marker", cursive;
}

h1 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 5px;
}

h2 {
    color: rgb(85, 85, 85);
    font-style: italic;
    text-align: center;
    font-size: 1.8em;
    margin-top: 0px;
}

.fr {
    margin-bottom: 5px;
    font-size: 1.2em;
}

.en {
    color: rgb(85, 85, 85);
    font-style: italic;
    font-size: 1em;
    margin-top: 0px;
}

.comm_u {
    text-align: center;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 20px;
    border: 2px solid #e799ac;
    border-radius: 5px;
    background: #e799ac;
}