* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    font-family: Arial, sans-serif;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    background-color: #002366; /* Bleu royal */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    color: #dcdcdc;
}

.footer {
    margin-top: 50px;
    text-align: center;
    color: white;
}

.logo {
    width: 150px;  /* Ajustez la taille selon vos besoins */
    height: 150px;  /* Assurez-vous que le logo soit carré */
    margin-top: 10px;
}
