body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2b2b2b;
    font-family: Arial, sans-serif;
    color: white;
    overflow: hidden;
}

#texte, #fin {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
}

#image {
    display: none;
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
}

#fin, #restartBtn {
    display: none;
}

#restartBtn {
    font-size: 2rem;
    padding: 10px 20px;
    cursor: pointer;
    background: #4CAF50;
    border: none;
    color: white;
    border-radius: 5px;
}

#restartBtn:hover {
    background: #45a049;
}