.accueil-presentation-container {
    width: 100%;
    height: fit-content;
    padding: 2rem 0;
}

.accueil-presentation {
    position: relative;
    width: 80%;
    max-width: 1200px;
    height: fit-content;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    box-sizing: border-box;
}

/* Coin décoratif en haut à gauche */
.accueil-presentation::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #E0E0E0;
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    z-index: 1;
}

/* Coin décoratif en bas à droite */
.corner-bottom-right {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #E0E0E0;
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    z-index: 1;
}

.title {
    padding: 1rem;
    font-size: 30px;
    font-weight: bold;
}

.bouton {
    width: max-content;
    padding: 12px 24px;
    border: 1px solid black;
    color: #E0E0E0;
    text-decoration: none;
    margin-top: 1rem;
    transition: 0.9s ease-in-out;
}

.bouton:hover {
    color: white;
    border: 1px solid #E0E0E0;
    transition: 0.9s ease-in-out;
}


/* version mobile */

@media (max-width: 862px) {
.accueil-presentation {
width: 95%;
}
}
