body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding: 50px;
    background-color: #d0c8b1;
    text-align: center;
    line-height: 1.6;
}

.container {
    background-color: #e1e1e1;
    padding: 40px 60px;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.logo {
    width: 100%;       
    max-width: 400%; 
    height: auto;      
    display: block;
    margin: auto;
}

h1 {
    color: #333;
    font-weight: 600;
    font-size: 16px;  /* Taille de base pour les petits écrans */
}

/* Ajustements pour les écrans d'une largeur de 480px et plus */
@media (min-width: 480px) {
    h1 {
        font-size: 16px;
    }
}

/* Ajustements pour les écrans d'une largeur de 768px et plus */
@media (min-width: 768px) {
    h1 {
        font-size: 28px;
    }
}

/* Ajustements pour les écrans d'une largeur de 992px et plus */
@media (min-width: 992px) {
    h1 {
        font-size: 36px;
    }
}


.highlighted {
    color: red;
}

ul {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
    margin-left: 0;
}

li {
    padding: 15px;
    border-bottom: 1px solid #f2f2f2;
    color: #666;
    transition: background-color 0.3s;
}

li:hover {
    background-color: #f2f2f2;
}

li:last-child {
    border-bottom: none;
}

.footer {
    margin-top: 30px;
    font-weight: 600;
    color: #ff4500;
}
