.container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.information {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 500px;
    height: 300px;
    margin: 30px;
    padding: 15px;
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-size 0.5s ease;
    background-size: 100% 100%;
}

.information:hover {
    background-size: 120% 120%;
}

.information p {
    font-size: 16pt;
    line-height: 25px;
    color: white;
    font-weight: 600;
}

.information h1 {
    color: red;
}

.image-slider {
    width: 500px;
    height: 300px;
    position: relative;
    margin: auto;
    overflow: hidden;
}

.image-slider img {
    width: 100%;
    height: 100%;
    position: absolute;
}

.image-slider button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

#previous-button {
    left: 10px;
}

#next-button {
    right: 10px;
}

.container_choix_excursions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.choix_excursions {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 15px;
    padding-left: 0;
    padding-right: 0;
}

.choix_excursions label {
    font-size: 10pt;
    width: 140px;
}

#msform input[type=checkbox] {
    width: 40px;
    height: 20px;
}

#msform textarea {
    max-width: 210px;
    min-width: 100%;
    width: 100%;
    height: 65px;
    min-height: 65px;
}

@media screen and (max-width: 1500px ) {
    .container {
        flex-direction: column;
    }
}

@media screen and (max-width: 550px ) {
    .information {
        width: auto;
        height: auto;
    }

    .information p {
        font-size: 14pt;
    }

    .image-slider {
        width: 90%;
        height: 250px;
    }
}