.pillbox {
    position: relative;
    width: 100%;
    height: 40px;

    display: flex;
    overflow-x: scroll;
    overflow-y: visible;
}

.pill {
    width: fit-content;
    overflow-y: visible;
    height: 30px;
    margin: 5px;
    background-color: #d2dcff;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 5px;
    display: table;
}

.pill:hover {
    background-color: #e5b1b1;
}

.pill p {
    margin: 3px;
    text-align: center;
    font-size: 1em;
    display: table-cell;
    vertical-align: middle;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: calc(100vh - 450px);
    margin: 20px;
    display: flex;
    flex-flow: row wrap;
    overflow-y: scroll;
    align-items: center;
}

.tile {
    width: calc((100% / 4) - 22px);
    height: 100px;
    background-color: #d2dcff;
    border-radius: 25px;
    margin: 10px;
    cursor: pointer;
}

.tile:hover {
    background-color: #71778e;
}

.tile p {
    margin: 0;
    text-align: center;
    margin-top: 40px;
}
