.category-description {
    color: white;
    font-size: 14px;
    font-family: 'Syncopate', sans-serif;
}

#categoryArticles {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
}

.categoryArticle {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.categoryArticle:hover {
    cursor: pointer;
}

.categoryArticle:hover .articleTitle {
    color: #ff0101;
    animation: pulseRedHover 2s infinite;
}

.articleImage {
    padding: 10px;
    margin: 10px 20px;
    width: 200px;
    height: 200px;
}

.articleTitle-container {
    white-space: wrap;
    max-width: 240px;
}

.articleDate {
    display: block;
    font-size: 15px;
    text-align: center;
    color: #ff0101;
    font-family: 'Syncopate', sans-serif;
}

.articleTitle {
    font-size: 14px;
    text-align: center;

    display: block;
    text-align: center;
    font-family: 'Syncopate', sans-serif;
}

.articleDate, .articleTitle {
    margin: 5px;
}
