/* style.css */

/* Style global pour centrer le contenu et définir une police moderne */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f3f4f6;
    color: #333;
    margin: 0;
}

.container {
    text-align: center;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
}

h1 {
    font-size: 1.8rem;
    color: #4a4a4a;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    color: #007acc;
    font-weight: bold;
    margin-top: 10px;
}

p.ip-address {
    font-size: 4rem; /* Taille de police plus grande pour l'adresse IP */
    font-weight: bold;
    color: #007acc;
    margin-top: 40px;
}

.info {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #777;
}

/* Animation d'apparition en douceur */
.container {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
