* {
    box-sizing: border-box;
}

html,
body {
    padding: 0;
    margin: 0;
}

/* Définition d'un container pour gérer l'affichage */
.container {
    overflow: hidden;
    margin-bottom: 40px;
}

/* Définition du carousel */
.carousel {
    position: relative;
}

/* Définition de l'élément contenant les diapositives */
.carousel-inner {
    display: flex;
    overflow: hidden;
    height: 400px;
    flex-wrap: nowrap;
}

/* Définition des diapositives */
.slide {
    flex: 0 0 100%;
    height: 100%;
    transition: .5s ease-in-out;
    position: relative;
}

/* Définition de l'affichage de l'image de chaque diapositive */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay de texte centré */
.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(255, 255, 255);
    font-size: 1rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    text-align: center;
    font-family: "Bodoni Moda", serif;
}

/* Définition des boutons de contrôle du carousel */
.carousel-controls {
    position: absolute;
    z-index: 5;
    left: 10%;
    right: 10%;
    top: 50%;
    display: flex;
    justify-content: space-between;
}

.carousel-controls button {
    border-radius: 50%;
    padding: 10px;
    background-color: #00000000;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color:#ffffff
}

/* Définition des points de contrôle */
.carousel-dots {
    position: absolute;
    z-index: 5;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10%;
    display: flex;
    justify-content: center;
}

.carousel-dots .dot {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin: 5px;
    cursor: pointer;
    background-color: #ffffff;
    font-family: "Bodoni Moda", serif;
}

.carousel-dots .active {
    background-color: #761530;
}

.title-comments-title h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10rem;
    color:#a27c27;
    margin-bottom: 20px;
    font-size: 4rem;
    text-align: center; /* Center align for smaller screens */
    font-family: "Pinyon Script", serif;
      
}