@media (max-width: 600px) {
  body { font-size: 14px;}
}
@media (max-width: 800px) {
  body { font-size: 14px;}
}
body{
    margin: 0px;
}
form{
    width: 100%;
    background-color: RGB(51,64,147);
    padding : 0px 0px;
}
.c100{
    /* width: 100%; */
    margin: 20px;
    /* border: 1px solid red; */
    /*text-align: center;*/
}
label{
    display: inline-block;
    min-width: 25%;
}
input[type="submit"]{
    color: RGB(200,100,0);
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 14px;
    border: 2px solid RGB(200,100,0);
}
input[type="submit"]:hover{
    background-color: RGB(200,100,0);
    color: #fff;
    cursor: pointer;
    box-shadow: 0px 0px 5px 0px #777;
}
.div_box{
    border: 1px solid black;
    text-align: center;
}
h1{
    text-align: center;
}
img{
    border-radius:50%;
}
a:link {
    color: white;       /* lien non visité */
}

a:visited {
    color: purple;     /* lien déjà visité */
}

a:hover {
    color: red;        /* au survol de la souris */
}

a:active {
    color: orange;     /* pendant le clic */
}