html, body {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#yuck-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: monospace;
    white-space: pre;
    overflow: hidden;
    cursor: pointer;
}

.counters {
    position: fixed;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.counter {
    background-color: lightgray;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 5px;
}
