#programs {
    width: 50vw;
}

.programsContainer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    height: 500px;

    margin-top: 2rem;
}

.program {
    display: flex;
    flex-basis: 10%;
    align-items: center;
    gap: 20px;
}

.program p {
    font-size: 25px;
    font-weight: unset;
}

.programImage {
    width: 100px;
    height: 100px;
    background-color: black;
}

.programImageContainer {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}


#languages {
    margin-top: 2rem;
    width: 50vw;
    margin-bottom: 3rem;
}

.languageContainer {
    margin-top: 3rem;
}

.languageContainer p {
    font-size: 25px;
    font-weight: unset;
    margin: 2rem 0;
}

.language {
    display: inline-block;
    font-weight: bold;
    font-size: 28px;
}


@media (max-width: 800px) {
    #programs {
        width: 80vw;
    }

    #languages {
        width: 80vw;
    }

    .programsContainer {
        height: unset;

    }
}