@font-face {
	font-family: 'Poppins';
  }

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    margin: 0;
    min-height: 100dvh;
    background-color: rgb(56, 56, 56);
}


main {
    margin-left: 0;
    margin: 20px 4% 20px 4%;
    line-height: 1.5;
    font-size: 22px;
    transition: all 1s ease;
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    /* Permet à la div #body de prendre tout l'espace restant */
}

h1 {
    color: rgb(217, 217, 217);
}


#container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: auto;
    max-width: 50%;
}

#container a {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    color: rgb(155, 155, 155);
}

#vignetteContainer {
    display: flex;
    align-items: center;
    background-color: rgb(26, 26, 26);
    border-radius: 10px;
    padding: 5px;
    gap: 10px;
    transition: all 0.2s ease;
    width: auto;
    max-width: 100%;
    overflow: hidden;
    flex-grow: 1;
    filter: grayscale(0.6);
}

#vignetteContainer a {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    color: rgb(159, 159, 159);
}

#vignetteContainer:hover {
    transform: translateY(-8px);
    transition: all 0.1s ease;
    background-color: rgb(46, 46, 46);
    z-index: 2;
    filter: grayscale(0);
    color: rgb(231, 231, 231);
    -webkit-filter: drop-shadow(0px 5px 5px #000000b2);
    filter: drop-shadow(0px 5px 5px #000000b2);
}

.vignetteText {}

.smallimg {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    flex-shrink: 0;
    /* Empêche le redimensionnement de la div même si l'espace est limité */
}

.smallimg img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    -webkit-filter: drop-shadow(0px 5px 5px #000000b2);
    filter: drop-shadow(0px 5px 5px #222222b2);
}










footer {
    background: #232426;
    height: auto;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    /* Positionnement absolu pour le footer */
    z-index: 2;
    background-size: 10%;
    font-size: 16px;
    color: grey;
    justify-content: center;
}


footer a {
    padding-top: 10px;
    color: white;
    font-style: normal;
    text-decoration: none;
}
.reseaux{
    width: auto;
}
.reseaux i {
    color: white;
    transition: transform 0.3s ease, color 0.4s ease;
    transform: scale(1);
}

.reseaux i:hover {
    size: 150%;
    color: var(--couleur3);
    transform: scale(1.1);
    transition: color 0.2s ease;
}

.footer-menu{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.separation{
    width: 20px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.671);
    margin: 10px auto;
}


@media all and (orientation:portrait) {
    #container {
        width: auto;
        max-width: 100%;
    }

    #vignetteContainer{
        filter: none;
    }


}