
@media screen and (min-width: 1110px) {
    .paysage {
    background-image: url(../image/pont.jpg);
    background-size: 80vw;
    background-position: center;
}
}

@media screen and (max-width: 1110px) {
    .paysage {
    background-image: url(../image/pont.jpg);
    background-size: 1110px;
    background-position: center;
    padding-top: 22.275;
    padding-bottom: 22.275;
}
}

.formu {
    margin: 0.5vw;
    width: 100%;
}

.formu input {
    height: 4.2vh;
    width: 100%;
    outline: none;
    border: 0.15vw solid black;
    border-radius: 0.2vw;
    transition: box-shadow 0.2s, border-color 0.2s;
    font-size: 1.1vw;
}

.formu input:focus {
    border-color: #16adc8;
    box-shadow: 0 0 0 0.15vw #16adc880;
}

.message { margin: 0.5vw; width: 100%;}

.message textarea {
    width: 100%;
    height: 22vh;
    outline: none;
    resize: none;
    border: 0.15vw solid black;
    border-radius: 0.2vw;
    transition: box-shadow 0.2s, border-color 0.2s;
    font-size: 1.3vw;
}

.message textarea:focus {
    border-color: #16adc8;
    box-shadow: 0 0 0 0.15vw #16adc880;
}

.envoyer {
    padding-right: 2vw;
    padding-left: 2vw;
    font-size: 2vw;
    margin-left: 0.5vw;
    background-color: #ffffff;
    border: #000000 solid 2px;
    border-radius: 1vw;
    box-shadow: 0 0 0.7vw 0.15vw rgba(0, 0, 0, 0.299);
    cursor: pointer;
    transition-duration: 0.5s;
}

.envoyer:hover {
    transform: scale(1.05);
    transition-duration: 0.5s;
}

.background {
    background-color: white;
    border-radius: 2vw;
}