.histoire {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: nowrap;
    width: 90%;
    margin: 0 5% 20px 5%;
}

@media (max-width: 800px) {
    .histoire {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-around;
        flex-wrap: nowrap;
        width: 90%;
    }
}

.histoire>div:nth-child(1) {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 20px;
    width: 65%;
}

.histoire>div:nth-child(1)>h2 {
    font-size: clamp(24px, 3.5vw, 60px);
    color: #032c64;
    margin-bottom: 16px;
    font-family: 'Comfortaa', cursive;
}

.histoire>div:nth-child(1)>p {
    font-size: clamp(16px, 1.5vw, 22px);
    line-height: 1.5;
    font-family: 'Open Sans', sans-serif;
}

.histoire>div:nth-child(2) {
    display: flex;
    width: 30%;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
}

.histoire>div:nth-child(2)>img {
    width: 18vw;
}