@charset "utf-8";
 body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corps de la page */
body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

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

/* Logo responsive */
.logo {
    width: min(650px, 90vw);
    height: auto;
    max-width: 650px;
    max-height: 650px;
    display: block;
}