@font-face {
    font-family: 'Exo';
    src: url('../fonts/Exo-Regular.otf') format('opentype');
}

body {
    margin: 0;
    font-family: 'Exo', Arial, sans-serif;
    background-color: #32383b;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.content {
    text-align: center;
}

.logo img {
    width: 350px;
    /* Largeur du logo */
    margin-bottom: 25px;
    /* Espacement */
}

.text p {
    font-size: 1.2rem;
    /* Taille de police réduite */
    margin: 0;
}

.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    /* Padding réduit */
    background-color: #32383b;
    position: absolute;
    bottom: 0;
}

.footer a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    /* Taille de police ajustée pour la cohérence */
}

.footer a:hover {
    text-decoration: underline;
}