.nav-wrap {
    position: sticky;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 99999;
    display: flex;
    justify-content: flex-end;
    padding: 0em 1em;
    background-color: rgba(255, 255, 255, 0.76);
    border-bottom: 1px solid rgba(105, 105, 105, 0.233);
}

.nav-btn-wrap{
    width: 130px;
    height: 70px;
    padding: 10px;
    transition: background-color 0.2s ease-in-out;
    color: dimgray;
}

.nav-btn-wrap:hover{
    background-color: rgba(68, 67, 67, 0.329);
}

.nav-btn{
    color: inherit;
    text-decoration: none;
    font-size: 1.2em;
    width: 100%;
    height: 100%;

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