body, html {
    
    height: auto;
    width: auto;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(45deg, #004861, #090d32, #4f1639);
    background-size: 400% 400%;
    animation: gradientBackground 20s ease infinite;
    color: #fff;
    text-align: center;
    font-size: 2rem;
}

/* Animation du dégradé de fond */
@keyframes gradientBackground {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Texte centré */
.content {
    padding-top: 12%;
    position: center;
    font-size: 20;
    font-weight: 100;
}

.liens a {
    color: rgb(95, 41, 86);
    padding-top: 12%;
    font-size: 5;
    font-weight: 100;
}