body {
    margin: 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background-image: linear-gradient(to right,#803ca8, #f7858d)
}

.button-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.button {
    padding: 15px 30px;
    font-size: 18px;
    color: #d48dfc;
    background-color: #3E0391;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #5c04d6;
}

h5 {
    position: absolute;
    bottom: 10px; /* Centre verticalement */
    left: 50%; /* Centre horizontalement */
    transform: translate(-50%, -50%); /* Corrige le décalage */
    margin: 0;
    padding: 5px 10px;
    color: #e06ffc;
    font-size: 10px;
    z-index: 2; /* Place le texte au-dessus de la scène */
    border-radius: 5px;
    font-family: Arial, sans-serif;
    text-align: center; /* Centre le texte à l'intérieur de la boîte */
    white-space: nowrap; /* Empêche les retours à la ligne */
}
