* {
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'TimesNewRomanLocal';
    src: url('../fonts/timesnewroman.woff2') format('woff2'),
        url('../fonts/timesnewroman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    background: #E2D4B7;

}

.inner {
    margin: auto 5%;
}

h2 {
    font-size: 90px;
    margin-bottom: 0.3em;
    /* Ou mets 0 pour la retirer complètement */

}

li {
    list-style-type: none;
}


a,
li a {
    color: #282828;
    text-decoration: none;

}

.intro p {
    width: 30%;
}

p {
    min-width: 25%;
}

.sectionname,
button {
    color: white;
    background-color: #282828;
    border: none;
    padding: 1em;
    font-family: "Times New Roman", Times, serif;

}

hr {
    border: 2px solid #282828;
}

.sectionname {
    display: inline-block;
    /* Permet à la div d'avoir uniquement la largeur de son contenu */
    padding: 1em;
    /* Garde le padding pour le style */
}


.intro {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 2%;
}

.intro video {
    width: 50%;
    border: #282828 4px solid;
}

.motdujour>* {
    margin-bottom: 1em;
    /* Ajuste la valeur selon l'espacement souhaité */
}

.flex {
    display: flex;
    gap: 5em;
    /* Espace horizontal entre les boutons */
}

.flex2 {
    display: flex;
    gap: 2em;
    /* Ajoute de l’espace entre le texte et l’image */
}


img.livre {
    width: 40%;
    margin: auto;
}

.concept {
    width: 50%;
    margin-bottom: 2%;
}

.concept p {
    margin-bottom: 2%;

}

.centrage {
    display: flex;
    align-items: center;
    justify-content: center;
}

button {
    font-size: 1.2em;
    /* Taille du texte plus grande */
    padding: 1.2em 2em;
    /* Plus de hauteur et de largeur */
    font-family: "Times New Roman", Times, serif;
    /* Police stylée */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #444;
    /* Changement de couleur au survol */
}

footer {
    color: white;
    height: 100%;
    background-color: #282828;
    padding: 2% 0;

}

.resaux a img {
    width: 30px;
    /* Ajuste la taille selon ton besoin */
    height: auto;
    /* Garde le ratio de l'image */

}

.insta {
    filter: invert(1);
    /* Transforme la couleur en blanc */

}


nav {
    display: flex;
    justify-content: space-between;
    /* Espace entre le logo et le menu */
    align-items: center;
    /* Centre verticalement */
    margin: 1em auto;
}


.logo a {
    font-size: 1.5em;
    /* Ajuste la taille du texte du logo */
}

ul {
    display: flex;
    gap: 20px;
    /* Ajoute un espace entre les éléments du menu */
    padding: 0;
}


ul li {
    list-style: none;
    font-size: 1.5em;
    /* Ajuste la taille du texte du logo */
}

.resaux {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.socials a img {
    width: 40px;
    /* plus grand que 30px */
    height: auto;
    margin-right: 20px;
    /* espace entre les icônes */
}

.socials a:last-child img {
    margin-right: 0;
    /* évite un espace inutile après Instagram */
}

.pocket a img {
    width: 70%;
    /* image Pocket plus grande */
}