* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #c1e5e5;
}

html {
    scroll-behavior: smooth;
}

.menu-container {
    width: 100vw;
    margin-left: 0;
    margin-right: 0;
}

.menu-item {
    display: block;
    width: 100vw;
}

.menu-item img {
    width: 100vw;
    height: auto;
}

.fab {    /* FAB BUTTON */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    cursor: pointer;
}

.fab-icon-holder {
    width: 50px;
    height: 50px;
    background-color: #d70040;
    border-radius: 100%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.fab-icon-holder:hover {
    opacity: 0.8;
}

.fab-icon-holder a {
    text-decoration: none;
}

.fab-icon-holder i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 25px;
    color: #ffffff;
}

.fab-options {
    list-style-type: none;
    margin: 0;
    position: absolute;
    bottom: 70px;
    right: 0;

    transition: all 0.3s ease-in-out;
    transform: scale(0);
    transform-origin: 85% bottom;
}

.fab-options-active {
    transform: scale(1);
}

.fab-options li {
    display: flex;
    justify-content: flex-end;
    padding: 5px;
}

.fab-label  {
    padding: 2px 5px;
    align-self: center;
    user-select: none;
    white-space: nowrap;
    border-radius: 3px;
    font-size: 16px;
    background-color: #666666;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    margin-right: 10px;
}
