body {
    background: linear-gradient(rgb(160, 235, 216), rgb(100, 140, 226));
    min-height: 200vh;
    max-width: fit-content;


}



a{
    color: black;
}

MArquee{
    scroll-behavior: auto;
    position: absolute;
    bottom: -130%;
}

/*---------------------------------------------------------------------------*/
/* MENU DE PAGES */
/*---------------------------------------------------------------------------*/
ul{
    position: absolute;
    right: 0%;
    left: 0%;
    top: 0%;
    list-style-type: none ;
    margin: 0;
    padding: 0;
    width: auto;
    background-color: #283645;
    overflow: hidden;
}
li{
    float: left;
    font-family: cursive;
}


li a{


    color: white;
    padding: 20px;
    text-decoration: none;
    display: block;
}
li a:hover{
    background-color: #23b8f3;
}


/*---------------------------------------------------------------------------*/
/* TABLEAU */
/*---------------------------------------------------------------------------*/
.content-table{
    text-align: left;
    border-collapse: collapse;
    margin: 500px;
    font-size: 3em;
    min-width: 800px;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.content-table thead tr{
    background-color: #009879;
    color: #ffffff;
    text-align: left;
    font-weight: bold;
}

.content-table th,
.content-table td{
    padding: 12px 15px;
}

.content-table tbody tr{
    border-bottom: 1px solid #dddddd;
    background-color: #f3f3f3;
}

.content-table tbody tr:nth-of-type(even){
    background-color: #eee;
}

.content-table tbody tr:last-of-type{
    border-bottom: 2px solid #009879;
}

.content-table tbody tr.active-row{
    font-weight: bold;
    color: #009879;
}

.content-table tbody tr.active-row2{
    font-weight: bold;
}

/*---------------------------------------------------------------------------*/
/* ANIMATION ENTREE DE PAGE */
/*---------------------------------------------------------------------------*/


@font-face {
    font-family: "Snowinter";
    src: url("polices/Snowinter-Free-For-Personal-Use.ttf");
}




.container {
    text-align: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 50px 10px 0;
    position: absolute;
    right:0%;
    top: 10%;
    left: 0%;
}
p {
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    color: transparent;
    font-size: 0px;
}
p span {
    display: inline-block;
    position: relative;
    font-family: "Snowinter";
    overflow: hidden;
    font-size: clamp(20px, 8vw, 120px);
}
p span::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translateY(-100%);
}
p:nth-child(1) {
    font-weight: 300;
    animation: txt-appearance 0s 1s forwards;
}


p:nth-child(1) span::after {
    background: #ffffff;
    animation: slide-in 0.75s ease-out forwards,
    slide-out 1s 1s ease-out forwards;
}




@keyframes slide-in {
    100% {
        transform: translateY(0%);
    }
}
@keyframes slide-out {
    100% {
        transform: translateY(100%)
    }
}
@keyframes txt-appearance {
    100% {
        color: #ffffff;
    }
}



/*---------------------------------------------------------------------------*/
/* BOUTTON INCROYABLE */
/*---------------------------------------------------------------------------*/



.zelie .button {
    position: absolute;
    bottom: -150px; 
    left: 50%; 
    transform: translateX(-50%); 
    font-size: 17px;
    height: 70px;
    width: 200px;
    border-radius: 30px;
    border: 2px solid #009879;
    background: #ffffff;
    color: #009879;
    cursor: pointer;
    transition: 0.5s;
}

.zelie .button:hover {
    background:  rgb(107, 116, 138);
    color: #ffffff;
    border: none;
}


.menu-button {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 15px 30px;
    font-size: 18px;
    color: white;
    background-color: #d13fb9;
    border: none;
    border-radius: 25px; /* Bords arrondis */
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.menu-button:hover {
    background-color: #992ac5;
    transform: scale(1.1);
}