 /* Reset */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        background-color: #000000;
        font-family: Arial, Helvetica, sans-serif;
        color: white;
        text-align: center;
    }
	
    /* Logo Container */
    .logo-container {
        padding: 40px 0;
        opacity: 0;
        animation: fadeIn 2s ease forwards;
    }

    .logo-container img {
        width: 90%;
        max-width: 1000px;
        height: auto;
		
		/*Animation de flou*/
		animation: blurOut 3s ease forwards;
		animation-delay: 0s;
    }

    /* Fade-in animation */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

	/* Flou progressif */
	@keyframes blurOut {
		from {
			filter: blur(12px);
		}
		to {
			filter: blur(0px);
		}
	}



    /* Navigation */
    nav {
        background-color: #000;
    }

    .menu {
        list-style: none;
        display: flex;
        justify-content: center;
    }

    .menu li {
        flex: 1;
    }

    .menu a {
        display: block;
        padding: 15px;
        text-decoration: none;
        color: white;
        font-weight: bold;
        transition: background 0.3s ease;
    }

    .menu a:hover {
        background-color: #333;
		text-decoration: none;
		color: white;
    }

    /* Mobile */
    @media (max-width: 768px) {
        .menu {
            flex-direction: column;
        }

        .menu li {
            border-top: 0px;
        }
    }


.content{
	margin-top: 75px;
	margin-left: auto;
	margin-right: auto;
	text-align: justify;
	max-width: 500px;
	width: 75%;

	}

.footer{
	height: 200px;
	line-height: 200px;
	text-align: center;
	color: #585858;
	}

a{
	color: white;
	text-decoration: underline;
	}

a:hover{
	color: red;
	text-decoration: underline;
	}

a img{
	border: 0px;
	}
	

