* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.page {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 90%;
}

.texte {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.logo {
    max-width: 80vw;
    max-height: 60vh;
    object-fit: contain;
}

.copyright {
    margin-top: 25px;
    font-size: 0.85rem;
    color: #666;
}
