* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    height: 100%;
}
header {
    width: 100%;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.957);
}
header .container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
header .gauche {
    flex: 1;
    text-align: left;
}
header .gauche h1 {
    font-size: 40px;
    color: white;
    margin-top: 12px;
    margin-left: 12px;
}
header .droite {
    flex: 1;
    text-align: right;
    margin-top: 20px;
    margin-right: 20px;
}
header .droite a {
    text-decoration: none;
    color: white;
    font-size: 25px;
    border:  2px solid white;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
}
.sousheader {
    background-color: rgba(0, 0, 0, 0.795);
    height: 20px;
}
.ligne {
    border: 1px solid black;
    width: 80%;
    margin-left: 10%;
    margin-top: 10px;
}
/* =================== Welcome ==================== */
.welcome {
    width: 100%;
    background-color: #a52a2a;
    height: 250px;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.welcome h2 {
    font-size: 40px;
    padding-top: 70px;
}
.welcome p {
    font-size: 30px;
}

/* ================= Avis ======================= */
.avis {
    width: 100%;
    background-color: aquamarine;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* ========== Questionaire ====================== */
.questionnaire {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.questionnaire ul {
    background: rgba(219, 219, 219, 0.3);
    width: 500px;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 10px;
    margin-left: 30px;
    margin-right: 30px;
    padding: 20px;
    border-radius: 10px;
    border-left: 1px solid rgba(255,255,255, .3);
    border-top: 1px solid rgba(255,255,255, .3);
    border-right: 1px solid rgba(0,0,0, .6);
    border-bottom: 1px solid rgba(0,0,0, .6);
}
.questionnaire ul div {
    width: 100%;
}
.questionnaire ul p {
    background-color: white;
    padding: 5px;
    margin: 3px;
    font-size: 23px;
    word-wrap: break-word; /* Permet de couper les mots pour aller à la ligne */
    word-break: break-all; /* Coupera les mots pour aller à la ligne si nécessaire */
    border-left: 1px solid rgba(255,255,255, .3);
    border-top: 1px solid rgba(255,255,255, .3);
    border-right: 1px solid rgba(0,0,0, .3);
    border-bottom: 1px solid rgba(0,0,0, .3);
    height: 40px;
}
.questionnaire ul span {
    font-size: 18px;
}
.questionnaire ul .contact {
    background: none;
    border: none;
}
.questionnaire ul .message {
    height: 150px;
}