@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

    body {
        font-family: "Noto Sans Hebrew", sans-serif;
        background-color: #171a21; /* Couleur de fond en dégradé sombre (similaire à Steam) */
        color: #ffffff; /* Couleur du texte principal */
        min-height: 100vh;
        position: relative;
        overflow-x: hidden;
    }

    .site-header {
        background-color: #171a21; /* Couleur de fond sombre */
        color: #ffffff; /* Couleur du texte */
        padding: 20px 0;
    }
    .header{
        position: sticky;
        top: 0;
        z-index: 999;
    }

    .site-title {
        font-size: 24px;
        margin: 0; /* Supprime la marge par défaut du titre */
        text-align: center;
    }

    .main-navigation ul {
        list-style: none;
        padding: 0;
        margin: 0; /* Supprime la marge autour de la liste */
        display: flex;
        justify-content: end;
    }

    .main-navigation li {
        margin-left: 20px;
    }

    .main-navigation a {
        color: #ffffff;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .main-navigation a:hover {
        color: #05ee84; /* Couleur au survol */
    }
main{
    min-height: calc(100vh - (149px + 20px + 76px));
}
/* Styles de base pour le footer */
.footer {
    background: linear-gradient(to bottom right, #032a54, #000000); /* Dégradé de vert pétrole */
    color: white;
    padding: 20px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
.footer-column {
    margin: 10px;
}
.footer-column h3 {
    margin-bottom: 10px;
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column li {
    margin-bottom: 5px;
}
.social-icons {
    display: flex;
    margin-top: 10px;
}
.social-icon {
    margin-right: 10px;
}

.footer a{
    color: #05ee84;
    text-decoration: none;
}
.footer a:hover {
    color: #05ee84;
    text-decoration: underline;
}
.footer a:visited {
    color: #02864a;
}

.footerdesactive{
    display: none;
}

::selection{
    background-color: #024B2A;
    color: #FFFFFF;
}
.idli{
    font-size: 0.8em;
    align-content: center;
}
.idli a:hover{
    color: aqua;
}