/* Reset rapide */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Arial", sans-serif;
    background: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff6600;
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.emoji {
    font-size: 3rem;
    margin-bottom: 20px;
}

.footer {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #777;
}

/* Bouton contact */
.contact-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff6600;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: #e55a00;
}
