@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,300,500);

/* Logo */
.logo img {
    position: absolute;
    top: 25px; /* Ajuste la distance du haut */
    left: 25px; /* Ajuste la distance de la gauche */
    width: 150px; /* Ajuste la taille du logo */
    height: auto;
}

/* Corps de la page */
body { 
    background-color: #007aff; 
    color: #fff;
    font-size: 100%;
    line-height: 1.5;
    font-family: "Roboto", sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Prend toute la hauteur de l'écran */
    margin: 0;
}

/* Titre */
h1 {
    text-align: center;
    font-size: 14em;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 10px; /* Réduit l'espace sous le "404" */
}

p {
    font-size: 2em;
    text-align: center;
    font-weight: 100;
    margin-top: 5px; /* Réduit l'espace au-dessus du texte */
}


/* Footer */
footer {
    display: flex;
}

footer p {
    font-size: 11pt;
}
