.content-block {
    margin: 1rem;
}

.selectors {
    text-align: center;
}

.accessible > h2 {
    margin-bottom: 20px;
}

.work-list {
    display: grid;
    grid-template-columns: 50% 50%;
}

select {
    border: none;
    border-radius: 10px;
    overflow-y: hidden;

    background-color: var(--purple);
    padding: 1rem;

    width: 49%;
    min-height: 100%;
    height: 100%;
    color: white;
}

option {
    border-radius: 5px;
    padding: 5px;
}

option:hover {
    cursor: pointer;
}

option:checked {
    background-color: var(--purple);
    color: white;
}