.section2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    padding-bottom: 1rem;
    background-color: var(--background2);
    width: 100%;
}

.section2 .features_div {
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.features_div .feature {
    display: flex;
    background-color: var(--background1);
    height: 24rem;
    width: 18rem;
    margin: 1rem;
    border-radius: var(--roundness);
    transition: all .5s;
    flex-direction: column;
}

.features_div .feature:hover {
    background-color: #00000099;
    transform: scale(1.05)
}

@media (max-width: 1599px) {
    .section2 .features_div {
        margin-left: 10rem;
        margin-right: 10rem;
    }
}

@media (max-width: 1279px) {
    .section2 .features_div {
        margin-left: 0rem;
        margin-right: 0rem;
    }
}

.feature .feature_img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    border-radius: var(--roundness);
}

.feature .feature_name {
    margin-top: 1rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: auto;
}

.feature .feature_desc {
    margin: 1rem;
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: auto;
}