body {
    margin: 0;
    padding: 0;
    height: 100%;
    position: relative;
    overflow-x: hidden;
    flex-direction: column;
    max-width: 100vw;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: opacity 0.5s ease-out, transform 1s ease-out, visibility 1s ease-out;
}

.is-visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

@keyframes levitation {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 60rem;
    width: 100%;
    background: url('pagefond_tache.png'), linear-gradient(to bottom, #7d6a82, transparent);
    opacity: 0.5;
    z-index: -1;
    animation: levitation 15s infinite;
    transition: transform 0s;
    max-width: auto;
    max-height: auto;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px;
    overflow: hidden;
}

.content {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding-top: 50px;  /* Ajout d'un espace en haut */
    max-height: none;  /* Hauteur fixe pour occuper tout l'écran */
    overflow: visible;  /* Cacher le contenu qui dépasse de la hauteur fixe */
}

.logo {
    width: 375px;
    height: 350px;
    border-radius: 0%;
    display: flex;
    justify-content: center;
    align-items: bottom;
    margin-bottom: 0px;
    margin-top: 0px;  /* Ajout d'une marge en haut */
    background-image: url('logo+typo2.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

h3 {
    font-size: 6rem;
    margin-top: 70px;
    font-weight: bold;
    font-family: 'Myanmar Text', sans-serif;
    color:#7d6a82;      
}

h1 {
    font-size: 6rem;
    margin-top: 30px;
    font-weight: bold;
    font-family: 'Myanmar Text', sans-serif;
    color:#7d6a82;            
}

h2 {
    font-size: 3rem;
    font-family: 'Myanmar Text', sans-serif;
    font-weight: 650;  
}


.scroll-indicator {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}


@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}
