body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    background-color: #2f2f2f;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1; /* Take up the remaining vertical space */
}

.logo {
    width: 150px;
}

.slogan {
    margin-top: 20px;
    font-size: 18px;
    color: #fff;
}
.legal-notice {
            color: #fff !important;
            text-decoration: underline !important;
            cursor: pointer;
            margin: 0;
        }
footer {
    padding: 10px;
    text-align: center;
}

        
.copyright {
    color: #a8a7a7;
    font-size: 14px;
    margin: 0;
}

