footer {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #4d4d4d;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0.4, 0, 0, 0.3) 0px 3px 3px -1px;
    height: 35px;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    font-size: 13.5px;
}

.labelFooter-g {
    height: 100%;
    width: 40vw;
    margin-left: 15px;
    color: #cccccc;
    display: flex;
    align-items: center;
    justify-content: start;
}

.labelFooter-d {
    height: 100%;
    width: 60vw;
    text-align: right;
    margin-right: 20px;
    color: #cccccc;
    display: flex;
    align-items: center;
    justify-content: end;
}

@media (max-width: 2000px) {
    footer {
        height: 32.5px;
    }
}

@media (max-width: 1800px) {
    footer {
        height: 32px;
        font-size: 12.5px;
    }
}

@media (max-width: 1600px) {
    footer {
        height: 30px;
        font-size: 12px;
    }
}

@media (max-width: 1400px) {
    footer {
        height: 24px;
        font-size: 10px;
    }
}

@media (max-width: 1200px) {
    footer {
        height: 22px;
        font-size: 10px;
    }
}

@media only screen and (max-width: 450px) {
    footer {
        font-size: 8px;
    }

    .labelFooter-g {
        display: none;
    }

    .labelFooter-d {
        margin-right: 10px;
    }
}