body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: yellow;
    font-family: "Luckiest Guy", cursive;
}

.card {
    text-align: center;
}

.pulsating {
    font-size: 6em;
    color: red;
    animation: pulse 1s infinite;
}

.pulsating2 {
    font-size: 3em;
    color: red;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.image-container {
    margin: 20px auto;
    width: 500px;
    height: 250px;
    animation: spin 5s linear infinite;
}

.image-container img {
    width: 100%;
    height: 100%;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#fireworks-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

@import url("https://fonts.googleapis.com/css?family=Luckiest+Guy&display=swap");




.popup {
    display: none; /* Caché par défaut */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0);
    justify-content: center;
    align-items: center;

}

.popup-content {
    background-color: #ff0000e6;
    padding: 20px;
    border-radius: 5px;
    width: 500px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: "Luckiest Guy", cursive;
    color: rgb(255, 255, 255);
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
}





.popup {
    display: none; /* Caché par défaut */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    font-family: "Audiowide", sans-serif;
    color: crimson;
}

.popup-content {
    background-color: #ff0000e1;
    padding: 20px;
    border-radius: 5px;
    width: 300px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 20px;
    cursor: pointer;
}

#statsChart {
    width: 100%;
    height: 300px;
}