/** code by webdevtrick ( https://webdevtrick.com ) **/

body, .mbox, .menu {
    display: flex;
    justify-content: center;
    align-items: center;
}
.mbox {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.8);
    padding: 5px;
    border-radius: 5px;
    z-index: 1000;
}

.mbox li {
    list-style: none;
    margin: 0 10px;
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    transition: 0.5s;
    cursor: default;
}
.mbox li a {
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    transition: 0.5s;
}
.mbox li a:hover {

    box-shadow: 0 0 2px 1px rgba(0,0,0, 0.8);
}
