/* Styles de base */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

header {
    //background-color: #f8f8f8;
    padding: 20px;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

h1 {
    margin: 10px 0 0;
    font-size: 1.5em;
}

/* Styles responsives */
@media (max-width: 600px) {
    h1 {
        font-size: 1.2em;
    }

    .logo {
        max-width: 80px;
    }
}
