/* ----- Configuration sections page ----- */
section {
    min-height: 100vh;
    width: 100%;
    display: flex;
}
#sec-1{
    background-color: var(--color-bg2);
    background-size: cover;
    color: var(--color-text1);
    justify-content:center;
    align-items: center;
}
#sec-2{
    color: var(--color-text1);
    justify-content:center;
    align-items: center;
    padding: 4.75rem 8%;
    flex-direction: column;
}

#sec-2 h2{
    background: linear-gradient(90deg, #FF0000, #8F00FF);
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
    text-align: center;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 3rem; /* 120% */
    letter-spacing: -0.05rem;
    text-transform: uppercase;
}

#sec-1 h1 {
	position: flex;
    text-align: center;
	background: linear-gradient(90deg, #FF0000, #8F00FF);
    /*background: linear-gradient(90deg, #FFFFFF, #666666);*/
	background-size: 400%;
    font-weight: 1500;
    font-size: 15vw;
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
	animation: animate 5s linear infinite alternate;
}
@keyframes animate {
	0% {
		background-position: 0%;
	}

	100% {
		background-position: 100%;
	}
}

a{
	color: var(--orange);
}
.liste-doc{
    width: 100%;
    display: flex;
    gap: 2rem;
    flex-direction: column;
}