* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    box-sizing: border-box;
    background-color: #121212;
    background: url(imgs/bfbackground.jpg) no-repeat;
    color:#fff;
    font-family: Arial, Helvetica, sans-serif;
}
.nav-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 5vw;
    bottom: 2vh;
}
.menu-tab {
    position: relative;
    width: 90vw;
    height: 8vh;
    background-color: #121212;
    color: #fff;
    border-radius: 1vh;
    text-align: center;

}

.menu-tab ul {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}

.menu-tab ul li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    list-style: none;
    width: 30vw;
    height: 8vh;
    z-index: 1;
}

.menu-tab ul li a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    color: #fff;
}

.menu-tab ul li a .icon {
    position: relative;
    display: block;
    font-size: 6em;
    align-items: center;
    text-align: center;
    color: #fff;
}

.menu-tab ul li a .text {
    text-align: center;
    align-items: center;
    font-size: 2em;

}

@media only screen and (max-width: 1200px) {


}