html, body{
    font-family: 'Nunito';
    margin: 0;
    padding: 0;
    height: 100%;
}

.main-content {
    height:100vh;
    background-image: url('/public/img/nouvelle_image.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 900px auto; /* taille ajustable */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    psition:relative;
}

.main-content .card {
    background-color: rgba(255, 255, 255, 0.5); /* blanc semi-transparent */
    backdrop-filter: blur(1px); /* effet de flou derrière */
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    z-index: 1;
}

.footer-text {
    color: white;
    font-weight: bold;
}

.language-selector a {
    color: white;
    text-decoration: none;
}

.language-selector a:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .card {
        margin: 0 10px;
    }
}