:root {
    --background-joboffer-1: #4f75aa;
    --background-joboffer-2: #82ccc0;
    --joboffer-color-h1: #3e3e3b;
}
.category-list {
    text-align:center;
}
.category-list ul{
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 100%;
    /* text-align: center; */
    align-items: stretch;
    padding-left: inherit;
}
.category-list li {
    position: relative;
    left: 20px;
    display: inline-flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    justify-items: stretch;
}
.category-list li .joboffers-cat {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
    align-items: stretch;
    position: relative;
    left: 10px;
}
.category-list li a {
    margin-top: 10px;
    width: 200px;
    height: 40px;
    background: #82ccc0;
    background: linear-gradient(0deg, var(--background-joboffer-2) 0%, var(--background-joboffer-1) 75%);
    border-radius: 36px;
    border: 0 solid black;
    color: white;
    font-size: 20px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    padding-top: 10px;
}
.category-list li a:hover {
    background: #82ccc0;
    background: linear-gradient(0deg, var(--background-joboffer-1) 0%, var(--background-joboffer-2) 75%);
}

@media (max-width: 720px) {
.category-list li {
    position: relative;
    left: -15px;
    display: inline-flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-items: stretch;
    align-content: center;
}
}