.container {
    margin: auto;
    max-width: 1200px;
    width: 100%;    
}

#index__menu-nav-list {
    display: flex;
    justify-content: space-evenly;
}

.index__menu-nav-item {
    flex: 1;
}

#index__menu-image {
    display: none;
}

.index__menu-link {
    font-weight: 600;
    color: #7E7E7E; 
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 16px 0;
}

nav#index__menu_nav {
    display: block;
}

@media (max-width: 768px) {

    .container {
        padding: 8px;
    }

    #index__menu-image {
        display: block;
    }

    img.index__me-image {
        height: auto;
        width: 100%;
        border-radius: 4px;
    }

    .index__menu-container {
        display: flex;
        flex-direction: column;
        justify-content: end;
        margin-bottom: 8px;
    }

    #index__menu-image {
        align-self: flex-end;
    }

    #index__menu-nav-list {
        display: flex;
        flex-direction: column;
    }

    nav#index__menu-nav {
        margin-top: 8px;
        display: none;
    }

    nav#index__menu-nav > ul > li > a {
        font-size: 18px;
    }

    .index__menu-nav-item {
        padding: 16px;
    }

    .index__menu-nav-item:hover {
        background-color: #F9F9F9;
    }

    #index__greeting {
        text-align: center;
    }

    strong {
        font-weight: bold;
    }
}