body
{
    font-family: Arial, Helvetica, sans-serif;
    background: url(../img/fete_de_la_ville_ruelle.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.container
{  
    height:100vh;
    width:100%;  
}

.form-contact {
    position:relative;
    top:50px;
    width:50%;
    height:auto;
    margin:0 auto;
    box-sizing : border-box;
    border-radius:5px;
    background-color:#f2f2f2;
    padding:20px;
}

.form-contact legend {
    width:100%;
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size:1.6em;
    margin-bottom:30px;
}

.form-contact legend a {
    text-decoration: none;
}

.form-contact legend a:hover {
    transform:scale(1.1);
}
 
input[type=text], textarea, input[type=email], input[type=tel]
{
    width:100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    margin-right: 0px;
    margin-left: 0px;
    resize: vertical;
    outline:none;
}

textarea {
    height:200px;
}

.form-contact em {
    color:red;
}

label
{
    margin-right: 0px;
    margin-left: 0px;
    width: 100%;
}
  
input[type=submit]
{
    background-color: #1255a2;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom:10px;
}
  
input[type=submit]:hover
{
    background-color: #1872D9;
}