body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.background {
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(-45deg, #8EC5FC, #E0C3FC, #8EC5FC, #E0C3FC);
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.text-container {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 3rem;
    color: white;
    animation: textAnim 2s infinite alternate;
    white-space: nowrap; 
    width: 100%;
    box-sizing: border-box;
		  padding: 20px;
 
}

/* Media queries pour petits écrans */
@media (max-width: 600px) {
    .text-container {
        font-size: 1.1rem
    }
}

@keyframes textAnim {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); } /* Légère mise à l'échelle */
}