body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "roc-grotesk-wide", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: black;
    color: white;
    display: flex; /* Ajouté pour permettre le centrage vertical */
    flex-direction: column;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-right: 20px;
    margin-left: 20px;
    margin-top: 12px;
}

.Activation-ProductionsLogotype {
    max-width: 120px;
}

.logo {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

li {
    display: flex;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 12px;
}

.main-nav {
    margin-left: auto; /* Déplace le main-nav à droite */
    margin-bottom: 4px;
}

main {
    flex: 1; /* Permet à main de prendre tout l'espace disponible */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.project-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; /* Centre le texte */
}

.project-video {
    width: 70%;
    height: auto;
    display: block;
    margin-bottom: 5px;
}

.project-info {
    display: flex;
    justify-content: space-between;
    width: 70%;
    text-align: left;
}

.project-title {
    margin: 0;
    font-weight: normal;
    font-size: 12px;
    color: white;
}

.project-date {
    margin: 0;
    font-size: 10px;
    font-weight: normal;
    color: white;
}

@media (max-width: 700px) {
    .Activation-ProductionsLogotype {
        max-width: 120px;
    }

    .main-nav {
        padding-right: 10px;
        margin-bottom: 0px !important;
    }

    nav ul {
        gap: 10px;
    }

    .logo {
        margin-bottom: 0px;
    }

    nav ul li a {
        font-size: 10px;
    }

    .project-video {
        width: 90%;
    }

    .project-info {
        width: 90%;
    }
}

@media (max-width: 400px) {
    .Activation-ProductionsLogotype {
        max-width: 100px;
    }

    .logo {
        margin-bottom: 2px;
    }

    .project-video {
        width: 100%;
    }

    .project-info {
        width: 100%;
    }
}



