body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #141414;
    color: #fff;
    
}


.wrapperW {
    max-width: 100%;
    min-height: 90vh;
    margin: 0 auto;
    background-color: transparent;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav li {
    display: inline-block;
    margin-right: 15px;
}

nav a {
    text-decoration: none;
    color: #da6334;
    padding: 5px 10px;
    border-radius: 50px;
    background-color: transparent;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #413f3f;
}

section {
    margin-top: 20px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 15%;
}

.presentation-section {
    display: flex;
    align-items: flex-start; /* Aligner en haut plutôt qu'au centre */
    justify-content: space-around; /* Ajustez selon vos préférences */
    margin-bottom: 100px;
    width: 100%; /* Ajustez selon vos préférences */
}

.text-container {
    flex: 2; /* Le texte prend plus d'espace que l'image */
    margin-right: 20px;
}

.imagePres {
    max-height: 250px;
    object-fit: cover;
    opacity: 0.7;
    align-self: flex-start; /* Aligner l'image horizontalement avec le texte */
}

.image-container {
    position: relative; /* Position relative pour permettre le positionnement absolu du bouton */
}

.honkButton {
    position: absolute; /* Position absolue par rapport à l'élément parent (.image-container) */
    top: 52%; /* Positionne le bouton au milieu verticalement */
    left: 40%; /* Positionne le bouton au milieu horizontalement */
    transform: translate(-50%, -50%); /* Centre parfaitement le bouton */
    background-color: #ca0202; /* Couleur du bouton */
    color: #ffffff; /* Couleur du texte du bouton */
    padding: 10px; /* Espace à l'intérieur du bouton */
    border: none; /* Supprime la bordure du bouton */
    border-radius: 50%; /* Bords arrondis du bouton */
    cursor: pointer; /* Curseur indiquant que le bouton est cliquable */
}


