header {
    position: relative;
}
.login-button {
    position: absolute;
    top: 10px;
    left: 10px;
}
.login-button a {
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
/* Ajoutez ici tout autre style CSS que vous souhaitez inclure */

.auth-buttons {
    position: absolute;
    top: 10px;
    right: 10px;
}

.auth-button {
    padding: 5px 10px;
    margin-left: 10px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding-bottom: 130px; /* Hauteur de votre footer */
}

.auth-button:hover {
    background-color: #0056b3;
}
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background-color: #f0f0f0;
    text-align: center;
}


h1 {
    font-size: 3em;
    text-align: center;
    color: black; /* Couleur du texte */
    text-shadow:
        2px 2px 0 white,
        -2px -2px 0 white,
        2px -2px 0 white,
        -2px 2px 0 white,
        2px 0 0 white,
        -2px 0 0 white,
        0 2px 0 white,
        0 -2px 0 white; /* Liseré blanc */
    padding: 20px;
}