.Category {
    margin-top: 20px;
}

.Category .category-title {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;

}

.Category .category-title li {
    padding: 8px 20px;
    border-radius: 6px;
}

.Category .category-title h2 {
    margin: 0;
    color: rgb(0, 0, 0);
    font-weight: bold;
}

.Category .category-list {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap; 
    background-color: rgba(133, 132, 132, 0.2);
    border-radius: 14px;
    padding: 10px 0;
    gap: 10px;
}

.Category .category-list li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 40px;
    background-color: #0969da;
    border-radius: 6px;
    border: 2px solid rgba(65, 64, 64, 0.62);
    transition: all 0.2s ease;
    cursor: pointer;
}

.Category .category-list li:hover {
    transform: translateY(-3px);
    box-shadow: 3px 3px 8px rgba(0,0,0,0.4);
    background-color: #0b7eda;
}

.Category .category-list li a {
    text-decoration: none;
    color: rgb(224, 212, 212);
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    width: 100%;
}
