PizzaCount
{
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    gap: 2px;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;

    .pizza-count
    {
        font-family: Verdana;
        font-size: 64px;
        font-weight: black;
        color: white;
        text-shadow: 0 0 10px black;
        text-transform: lowercase;
    }

    .pps-count
    {
        font-family: Verdana;
        font-size: 20px;
        color: white;
        text-shadow: 0 0 10px black;
    }

    &.gold
    {
        .pps-count
        {
            color: gold;
            text-shadow: 0 0 4px rgb(180, 153, 0);
        }
    }

}