html, body {
    margin: 0;
    padding: 0;
    min-height:100%;
    position: relative;


}



.container {
    margin-top: 50px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
   
    width: 30vw;
    background-color: black;
    border: 3px solid white;
}

.header {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    width: 100%;
    color: white;

}

.navbar {
    height: 40px;


    display: flex;
    justify-content: center;
    align-items: center;
    align-items: center;

}


.navbar ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 10px;
    color: white;
}

.statue {

 
    width: 80vw;
    display: flex;
    justify-content: center
}

.scroll-bg {
    position: fixed;
    top:0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('../Images/Background.jpeg');
    background-repeat: repeat-x;
    background-size: auto 100%;
    animation: scroll-bg 50s linear infinite;
    z-index: -1;
}

@keyframes scroll-bg {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 100% 0;
    }
}