@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;600&display=swap');

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Inter', sans-serif;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Ajout du GIF en fond */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/travolta_confus.gif') center/cover no-repeat;
    z-index: -1;
}

body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}


.container {
    z-index: 1;
    font-size: 3rem;
}

a {
    color: white;
    text-decoration: none;
    position: relative;
}

a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: white;
}

a:hover::after {
    background-color: red; /* Change la couleur au survol */
}




