.navbar{
    position: static;
    width: 100%;
    box-sizing: border-box;
}


.aside{
    padding-top: 2em;
    width: 40%;
    box-sizing: border-box;
    background-color: #F5F5F5;
    border-right: solid 2px #ececec;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.contact-infos{
    padding-bottom: 2em;
}
.aside a{
    color: black;
}
.aside-map{
    border: solid black 2px;
    padding-bottom: 0;
}
.aside-map iframe{
    width: fit-content;
}



.content{
    width: 60%;
    box-sizing: border-box;
    padding-bottom: 3em;
}
h1{
    margin: 1em 0;
    text-align: center;
}
.content>div{
    width: 80%;
    margin: 0 auto;
    background-color: #F5F5F5;
    border-radius: 15px;
    border: solid 2px black;
}
.presentation{
    padding: 2em;
    border-bottom: solid 2px black;
}
.presentation p{
    text-align: center;
    font-size: 30px;
    padding: 2em 0;
}


form{
    width: 90%;
    margin: 2em auto;
}
.deux-colonnes{
    justify-content: space-between;
}
.deux-colonnes input{
    width: 40%;
}
input{
    margin-bottom: 1em;
    height: 3em;
    width: 100%;
    box-sizing: border-box;
}
textarea{
    width: 100%;
    height: 8em;
    box-sizing:border-box;
}
button{
    margin-top: 1em;
}

footer{
    border-top: solid 2px black;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .form-container{
        flex-direction: column-reverse;
    }
    .aside, .content{
        width: 100%;
    }
    .aside-map{
        margin-bottom: 2em;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .form-container{
        flex-direction: column-reverse;
    }
    .aside, .content{
        width: 100%;
    }
    .aside-map{
        margin-bottom: 2em;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .form-container{
        flex-direction: row;
    }
    .aside{
        width: 40%;
    }
    .content{
        width: 60%;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}