.screens {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.screens .content, .screens .content h3, .screens .content h4 {
    text-align: center;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.screens .content {
    width: 40vw;
    flex-direction: column;
    margin: auto;
    /* margin-left: 10vw;
    margin-right: 10vw; */
    margin-bottom: 10vh;
}

.screens .content img {
    margin-bottom: 3vh;
    height: auto;
    width: 100%;
    border-radius: 21px;
}

@media only screen and (max-width: 768px) {
    .screens {
        flex-direction: column;
    }

    .screens .content {
        width: 80vw;
    }
}