/* Reset minimal du navigateur */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background-color: #000; /* Fond noir */
    color: #fff; /* Texte blanc */
    line-height: 1.8em;
}

a {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.8em;
    color: #F37129;
    text-decoration: none;
}

a:hover {color: #fff;}

.centered-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    padding: 20px;
}

.logo {
    max-width: 160px; /* Ajustez selon la taille de votre logo */
    margin-bottom: 40px;
}

h1 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 10px;
    text-transform: uppercase;
}

h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #fff; /* Texte blanc */
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.8em;
}


.social {
    justify-content: center;
    padding: 5%;
}

.footer-static {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000; /* Couleur de fond */
    /*display: flex;*/
    display: none; /* MASQUER LE BLOC */
    justify-content: space-between;
    padding: 10px;
    font-size: 10px;
}

.footer-left, .footer-right {
    display: flex;
    align-items: center;
}

.social-icon, .contact-icon {
    margin-right: 20px;
    /* Styles des icônes (couleur, taille, etc.) à ajuster ici */
}

@media screen and (max-width: 600px) {
    .footer-static {
        flex-direction: column;
    }
    .footer-left, .footer-right {
        justify-content: center;
        margin-bottom: 10px;
    }
}
