/* Variables CSS pour personnalisation facile */
:root {
    --background-color: #ffffff;
    --text-color: #000000;
    --font-family: Arial, sans-serif;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container principal */
.container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Contenu centré */
.content {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

/* Logo */
.logo-container {
    margin-bottom: 40px;
}

.logo {
    max-width: 600px;
    max-height: 200px;
    width: auto;
    height: auto;
}


/* Message principal */
.message h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.message p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.6;
}

.sub-message {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
    margin-top: 20px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .content {
        max-width: 90%;
        padding: 0 20px;
    }
    
    .message h1 {
        font-size: 2rem;
    }
    
    .message p {
        font-size: 1.1rem;
    }
    
    .logo {
        max-width: 300px;
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .message h1 {
        font-size: 1.8rem;
    }
    
    .message p {
        font-size: 1rem;
    }

}

