.filter-black {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 1);
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.meter {
    width: 800px;
    height: 36px;
    position: relative;
    background: #555;
    border-radius: 18px;
    padding: 3px;
    box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 35px;
    font-family: Papyrus;
    text-align: center;
}

    .meter > span {
        display: block;
        height: 100%;
        border-radius: 18px;
        background-color: #954B30;
        box-shadow: inset 0 2px 9px rgba(255,255,255,0.3), inset 0 -2px 6px rgba(0,0,0,0.4);
        position: relative;
        overflow: hidden;
    }

.disclaimer {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 12px;
    font-family: Papyrus;
    text-align: center;
}

.advice {
    width: 100%;
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 25px;
    font-family: Papyrus;
    text-align: center;
}

.settings-grid {
    display: grid;
    grid-auto-flow: row;
    grid-row-gap: 5vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 40px;
    color: #ffffff;
    font-family: Papyrus;
    text-align: center;
}