#title-gif {
    background-color: transparent; /* Ensure no background */
    display: block; /* Ensures proper rendering */
}



#entre {
    font-size: 80px;
    padding: 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.4);
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
h1 {
    text-align: center;
    font-size: 80px;
    animation: colorAnimation 1s infinite;
    font-family: cursive;
    font-weight: bold;
}
#volume{
    font-size: 40px;
    padding: 20px;
    background-color: chartreuse;
    border-radius: 10px;
    border: 2px solid black;
    animation: blinkAnimation 0.5s infinite;
}
#title-gif{
    background-color: white;
    width: 100%; /* Adjust the width as needed */
    /* height: 100%; */
}
#giftButton{
    width: 100%;
    height: 100%;
}

@keyframes blinkAnimation {
    0% {
        visibility: hidden;
    }
    50% {
        visibility: hidden;
    }
    100% {
        visibility: visible;
    }
}

@keyframes colorAnimation {
    0% {
        color: green;
    }
    50% {
        color: red;
    }
    100% {
        color: green;
    }
}