body {
    text-align: center;
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
}

header {
    background-color: #333;
    color: white;
    padding: 20px 0;
    margin-bottom: 0px;
}

.card {
    background-color: #dadada;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 900px;
    margin: 20px auto 0px auto;

}

input[type="text"] {
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 10px;
}
button {
    padding: 10px 20px;
    width: 320px;
    margin-top: 10px;
    background-color: #006d09;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}button:hover {
    background-color: #555;
}


.recherche {
    margin-bottom: 10px;
    margin-top: 20px;
}

footer {
    background-color: #333;
    color: white;
    padding: 10px 0;
    margin-top: 20px;
    bottom: 0;
    position: fixed;
    width: 100%;
}
footer a {
    color: white;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}