.job-postings {
    display: flex;
    max-width: 100%;
    width: 90%;
    margin: 0 auto;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 5%;
}

.job-title {
    font-weight: bold;
}

.employment-header {
    text-align: center;
}

@media(max-width: 1000px) {
    .job-postings {
        flex-wrap: wrap;
    }
}