/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Style général */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f6f8;
    color: #333;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Titre principal */
h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a73e8;
    letter-spacing: 1px;
}

/* Affichage du protocole (PHP) */
body > *:last-child {
    font-size: 1.2rem;
    padding: 12px 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
