.category-card {
    background-color: #5271ff;
    border: 2px solid #5271ff;
    color: white;
    font-size: 18px;
    border-radius: 50%;
    height: 200px;
    width: 200px;
    text-align: center;
    cursor: pointer;
    margin: 20px;
}

.category-card__text {
    padding-top: 85px;
}

.category-card__text a {
    text-decoration: none;
}

.category-card:hover {
    background-color: white;
    color: #5271ff;
    border: 2px solid #5271ff;
}

.category-card:hover a {
    color: #5271ff;
}

.category-card a {
    color: #fff;
}

.category-page__container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 50px;
    justify-content: center;
}