@import url(accueil.css);

/* Contact */

#contact h2 {
    text-transform: uppercase;
    margin: 0 0 0 0;
    color: goldenrod;
}

#contact {
    border: 2px solid black;
    border-radius: 10px;
    background-color: darkblue;
    text-align: center;
    margin: 0 auto;
    max-width: 30%;
    overflow: hidden;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

#contact:hover {
    transform: scale(1.1);
}

#contact h2 .modif {
    text-transform: none;
    color: grey;
}