/* La navbar */
.logo {
    width: 50px;
    height: auto;
}


.navbar {
    background: url("../img/fond_nav.png");
    background-position: center center;
    background-size: contain;
    width: 100%;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}


.nav-menu {
    
    display: flex;
    list-style: none;
    gap: 25px;
    font-family: minecraft;
    font-size: 16px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-menu a:hover {
    background-color: rgba(92, 184, 92, 0.3);
    color: #5cb85c;
}


/* Background */

body {
    background-image: url('../img/fullbg.png');
    background-size: cover;
    background-repeat: repeat-x;
    background-position: 0 0, 0 200%, 0 200%;
    animation: scrollBackground 30s linear infinite;
}


body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


@keyframes scrollBackground {
    0% {
        background-position: 0 0, 0 100%, 0 200%;
    }

    100% {
        background-position: 100% 0, 100% 100%, 100% 200%;
    }
}



/* Le footer */

footer {
    background: url("../img/fond_nav.png");
    background-position: center center;
    background-size: contain; 
    position: relative;
    padding: 15px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;

}
footer p {
    color: white;
    font-size: 15px;
    margin: auto;
}
footer a{
    color: white;
}
footer a:hover{
    color: #5cb85c;
}