.life-progress-meter-container {
    font-family: 'Work Sans', sans-serif;
    font-size: 5rem;
    line-height: 5rem
    margin: 0
    width: 100%;
    display: grid;
    grid-template-areas: "content";
}

.life-progress-meter-content {
    height: 100vh;
}

.life-progress-meter-content table {
    width: 100%;
    height: 100%;
    border-collapse: collapse;
    display: table;
    table-layout: fixed;
    margin-top: 10px;
}

.life-progress-meter-content td {
    display: table-cell;
    height: 2px;
    padding: 0;
    margin: 0;
    font-weight: 600;
    font-size: 10px;
}

.life-progress-meter-content td:hover {
    background-color: #FDCB58;
    color: #fff;
}

.life-progress-meter-past {
    background-color: #212121;
    border: 1px solid #fff;
    color: #fff;
}

.life-progress-meter-current {
    animation: blinker 1s linear infinite;
    background-color: #FCAB40;
    border: 1px solid #fff;
}

.life-progress-meter-future {
    background-color: #eee;
    border: 1px solid #fff;
}
