body,html {
    margin: 0;
    height: 100vh;
    width: 100vw;
    
}

nav {
    width: 100%;
    height: 55px;
    background-color: #2B1E5A;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}
.nav_container{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.nav_container a {
    font-size: 33px;
    color: white;
    font-family: "Lilita One", sans-serif;
    cursor: pointer;
}

.body_container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.body_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}