header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin: 5rem auto 0 auto;
}

#logo {
    width: 35vh;
}

nav {
    margin: 1rem 0;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    font-size: 2.5vh;
    color: black;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease-out;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.08);
    font-family: 'Neulis Black', sans-serif;
}

/* Effet au hover */
nav ul li:hover {
    transform: rotate(-5deg) translateX(3px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}












main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 20%;
    margin: 10% auto 0 auto;
}


.blob {
    width: 100px;
    height: 100px;
    background: black;
    border-radius: 50%;
    margin: 0 0 0 6rem;
    animation: morphBlob 4s infinite ease-in-out alternate;
}

@keyframes morphBlob {
    0% {
        border-radius: 90% 40% 60% 50% / 50% 50% 60% 40%;
        transform: translate(-50%, -50%) scale(1);
    }
    25% {
        border-radius: 30% 60% 50% 70% / 70% 30% 60% 40%;
        transform: translate(-50%, -50%) scale(1.2) rotate(6deg);
    }
    50% {
        border-radius: 70% 30% 40% 60% / 40% 70% 30% 60%;
        transform: translate(-50%, -50%) scale(0.8) rotate(-6deg);
    }
    75% {
        border-radius: 40% 70% 30% 50% / 50% 40% 70% 60%;
        transform: translate(-50%, -50%) scale(1.15) rotate(4deg);
    }
    100% {
        border-radius: 50% 40% 60% 50% / 50% 50% 60% 40%;
        transform: translate(-50%, -50%) scale(1);
    }
}
