body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Utiliser min-height permet de scroller si le bouton devient géant */
    background-color: #ffebee; /* Fond rose très pâle */
    font-family: 'Comic Sans MS', 'Arial', sans-serif; /* Police un peu plus mignonne */
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8); /* Fond blanc légèrement transparent */
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 90%;
}

/* Style pour fixer la taille de l'image */
.gif-image {
    max-width: 100%;
    height: 200px; 
    object-fit: contain;
    border-radius: 15px;
    margin-bottom: 20px;
}

h1 {
    color: #c2185b; /* Rose foncé */
    font-size: 2rem;
    margin-bottom: 30px;
}

.btn-container {
    display: flex;
    justify-content: center;
    align-items: center; /* Important pour centrer verticalement quand les tailles changent */
    gap: 20px;
    flex-wrap: wrap; 
}

.btn {
    font-size: 1.2rem;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    /* Transition douce pour le changement de taille */
    transition: all 0.3s ease; 
    font-weight: bold;
}

.btn-yes {
    background-color: #4caf50; /* Vert */
    color: white;
}
/* On enlève le hover scale car c'est le JS qui va gérer la taille */

.btn-no {
    background-color: #ef5350; /* Rouge */
    color: white;
}

.btn-no:hover {
    background-color: #e53935;
}