:root {
    --bottom-navbar-background: rgba(8, 24, 21, 1);
    --bottom-navbar-color: rgba(103, 109, 117, 1);
    --bottom-navbar-color-active: rgba(255, 255, 255, 1);
    --bottom-navbar-color-accent: #EE8143;
}

body {
    padding-bottom: 100px;
}

.bottom-nav {
    padding-top: 10px;
    background-color: var(--bottom-navbar-background);
    position: fixed;
    bottom: -1px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    z-index: 9995;
    width: 100%;
}

.bottom-nav-btn {
    max-height: 50px;
    max-width: 50px;
    width: 20vw;
    height: 20vw;
    color: var(--bottom-navbar-color);
    font-size: 14px;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bottom-nav-btn:hover {
    color: var(--bottom-navbar-color-active);
    text-decoration: none;
}

.bottom-nav-btn-active img,
.bottom-nav-btn:hover img {
    filter: brightness(2);
}

.bottom-nav-big-btn-active img,
.bottom-nav-big-btn:hover img {
    filter: brightness(6);
}

.bottom-nav-btn img {
    height: 25px;
}

.bottom-nav-big-center > img {
    margin-right: 2px;
    margin-bottom: 2px;
}

.bottom-nav-btn-active {
    color: var(--bottom-navbar-color-active);
}

.bottom-nav-big-btn {
    background-color: var(--bottom-navbar-color-accent);
    border-radius: 50%;
    position: relative;
    padding: 30px;
    top: -25px;
    box-shadow: 0 0 0 10px var(--bottom-navbar-background);
}


.bottom-nav-btn p {
    margin-top: 5px;
}

@media (min-width: 1000px) {
    .bottom-nav {
        display: none;
    }
}