@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
body {
    margin: 0px;
    padding: 0px;
    background-color: #fafafa;
    position: absolute;
    background-size: cover;
    height: auto;
    background-attachment: fixed;
    background-image: linear-gradient(175deg, #fafafa 40%, #20AAE7 40%);
}
header {
    background-color: #20AAE7;
    border: none;
}
.contact {
    font-size: 2em;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 50px;
}   
#navigation > a:hover {
    background: white;
    color: var(--massalia-color);
    padding: 4.7vh 1vw !important;
}
#resp-navigation {
    background: rgba(0, 0, 0, 0.3);
}
.dropdown > #desktop-nav:hover {
    padding: 4.7vh 2vw !important;
}
.dropdown:hover > a:hover + ul {
    margin-top: 15px;
}
form {
    margin-right: auto;
    margin-left: auto;
    padding: 30px;
    margin-bottom: 20vh;
    background-color: #fff;
    border-radius: 10px;
    width: 40%;
    box-shadow: 3px 3px 5px#000;
}
form h2 {
    font-size: 20px;
}
form .separation {
    width: 100%;
    height: 1px;
    background-color: #20AAE7;
}
form .corps-formulaire {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
form .corps-formulaire .groupe {
    position: relative;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}
form .corps-formulaire .gauche .groupe input {
    margin-top: 5px;
    padding: 10px 5px 10px 30px;
    border: 1px solid #c9c9c9;
    background-color: #fafafa;
    outline-color: #20AAE7;
    border-radius: 5px;
}
form .corps-formulaire .gauche .groupe i {
    position: absolute;
    left: 0;
    top: 25px;
    padding: 9px 8px;
    color: #20AAE7;
}
form .corps-formulaire .droite {
    margin-left: 40px;
}
form .corps-formulaire .droite .groupe {
    height: 100%;
}
form .corps-formulaire .droite .groupe textarea {
    margin-top: 5px;
    padding: 10px;
    background-color: #fafafa;
    border: 2px solid #20AAE7;
    outline: none;
    border-radius: 5px;
    resize: none;
    height: 72%;
}
form .pied-formulaire a {
    margin-top: 10px;
    text-decoration: none;
    background-color: #20AAE7;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}
form .pied-formulaire button {
    margin-top: 10px;
    text-decoration: none;
    background-color: #20AAE7;
    color: #fff;
    font-size: 15px;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 200px;
    margin-left:30%;
    margin-right:30%;
    transition: transform 0.5s;
}
footer {
    position: relative !important;
}
form .pied-formulaire button:hover {
    transform: scale(1.05);
}
@media screen and (max-width: 920px) {
    form .corps-formulaire .droite {
      margin-left: 0px;
    }
}
@media screen and (max-width: 920px) {
    form  {
        width: 65%;
    }
}
@media screen and (max-width: 650px) {
    form .pied-formulaire button {
        width: 200px;
        margin-left: 10%;
    }
}