/* Paramètres généraux */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: black;
    background: url('./images/background.jpg') center center no-repeat, #e6f7ff;
    background-size: cover;
}

/* Styles pour les liens */
a {
    color: darkblue;
    text-decoration: none;
}

a:hover {
    color: #ffff00; /* Jaune fluo */
}

/* Header */
header {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
}

/* Bouton de contact */
.contact-button {
    display: block;
    margin: 50px auto;
    padding: 15px 30px;
    text-align: center;
    color: white;
    background-color: red;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.8);
}
