*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #fff;
    margin-top: 80px;
    font-family: 'Cabin', sans-serif;
    overflow-x: hidden;
}

.contentContact{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.presentationContact{
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ff3131;
    padding: 50px;
    gap:20px;
    color: white;
    width: 100%;
}

.presentationContact h1{
    font-size: 50px;
}

.titre{
    margin:40px 0 40px 0;
    font-size: 50px;
}

.formulaire{
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.asterisk{
    color:red;
}

.inputForm, select, textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    font-size: 1.1em;
}

#zoneText{
    border: 1px #868686 solid;
}

input[type=submit] {
    width: 200px;
    height: 60px;
    font-size: 20px;
    background-color: #ff3131;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    margin-top: 40px;
    border: none;
}

input[type=submit]:hover {
    background-color: #d35348;
}

.container {
    border-radius: 5px;
    padding: 20px;
    margin: 20px auto 50px auto;
    width: 80%;
}

#zoneText{
    height: 200px;
}