.categories-container {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.category-container {
    padding: 10px 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.category-title {
    text-decoration: none;
    font-size: 15px;
    animation: pulseRed 3s infinite;
    font-family: 'Press Start 2P', cursive;
    color: white;
}

.category-title:hover, .category-title:focus {
    color: red;
    animation: pulseRedHover 3s infinite;
}

.category-count {
    font-size: 15px;
    animation: pulseBlue 3s infinite;
    font-family: 'Press Start 2P', cursive;
}

@media screen and (max-width: 900px) {
    .category-count-text {
        display: none;
    }
}