/* Configuration de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
}

.centered-box {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border: 2px solid #333;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
}

/* Style pour le nom de la marque */
.brand-name {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #333;
}

/* Style pour les infos de contact */
.contact-info {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #555;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsivité */
@media (max-width: 600px) {
    .centered-box {
        padding: 15px;
        font-size: 1em;
    }
    
    .brand-name {
        font-size: 1.5em;
    }
}
