.retour {
    width: 8vh;
    height: 8vh;
    padding-top: 2vh;
}
body {
    background-color:#0a0a0a;
    font-family: "Montserrat", sans-serif;
}
h1 {    
    font-family: "Montserrat", sans-serif;
    color: white;
}
section {
    display: flex;
}
section img {
    width: 10vh;
    height: 12vh;
}
.title {
    display: flex;
    justify-content: space-between;
    margin-top: 0;

}
.sliders {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}
.carousel {
    position: relative;
    width: auto; 
    max-width: 150vh;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel img {
    object-fit: cover;
    max-width: 100%;
    height: 100%;
    flex: 1 0 100%;
    display: block;
    min-height: 30vh;
    max-height: 80vh;
}

.description {
    max-width: 35%;
    font-size: 1.2em;
    text-align: left;
    margin-left: 20px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.prev { left: 5px; }
.next { right: 5px; }
.bento-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 300px;
    background: #222;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
.bento-item {
    background: #333;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
}
.bento-item:hover {
    background: #444;
}
a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}