.hireStack {
    display: flex;
    justify-content: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
    box-sizing: border-box;
    width: 100vw;
    background: #F1F0F0;
}

.hireStack .center {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    gap: 2rem;
}

.hireStack h3 {
    color: var(--primary-700, #2F396A);
    font-size: 40px;
}

.hireStack .stackList {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    width: 100%;
}

.hireStack .stackList li {
    font-family: "Space Grotesk";
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-700, #2F396A);
    background: #FFFFFF;
    border: 1px solid #DCDBFF;
    border-radius: 2.5rem;
    padding: 0.5rem 1.1rem;
}

@media only screen and (max-width: 820px) {
    .hireStack {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .hireStack h3 {
        font-size: 28px;
    }

    .hireStack .stackList li {
        font-size: 13px;
        padding: 0.4rem 0.85rem;
    }
}
