body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: url("nainoa-shizuru-NcdG9mK3PBY-unsplash.jpg");
    overflow-x: hidden;
}

.main-content{
    flex: 1;
}

.navbar{
    background-color: #194155;

    width: 100%;
    text-align: center;
}

.menu_link_div{
    width: 20vw;
    height: 10vh;
}

.menu_link_div img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav_title img{
    width: 6vw;
}


.menu_left{
    margin-left: 2rem;
    font-family: 'Cooper Black', sans-serif;
    text-decoration: none;
    color: white;
    font-size: 3vw;
}

.menu_right{
    margin-right: 2rem;
    font-family: 'Cooper Black', sans-serif;
    text-decoration: none;
    color: white;
    font-size: 3vw;
}

.menu_link:hover{
    color: #1b1b1b;

}

.footer_container{
    margin-top: 2rem;
}

.footer_link{
    text-decoration: none;
    color: white;
}

.footer_link:hover{
    color: #1b1b1b;
}

@media (max-width: 768px) {
    .navbar {
        /* Become a flex container in column direction */
        display: flex;
        align-items: center;
    }

    .nav-row {
        /* Make .nav-row a flex container and space items between */
        display: flex;
        justify-content: space-between;
    }

    .nav_title {
        /* Allow .nav_title to remain a block, but center items vertically */
        display: flex;
        align-items: center;
    }

    .nav_title img{
        width: 20vw;
    }

    .menu_link_div {
        /* Allow .menu_link_div to remain a block, but center items vertically */
        display: flex;
        align-items: center;
        margin-right: 2rem;
    }
    .menu_left, .menu_right{
        /* New style */
        font-size: 5vw; /* Adjust as needed */
        text-align: center;
    }
}

