section.layout {
    width: 100vw;
    height: 100vh;
    display: flex;
}

section.layout .item {
    width: 50%;
    height: 100%;
    padding: 100px;
    display: flex;
    align-items: center;
}

section.layout .item img {
    height: 75vh;
    border-radius: 20px;
    cursor: pointer;
}

section.layout .item.cicek {
    background: rgb(106, 176, 76);
    background: linear-gradient(180deg, rgba(106, 176, 76, 0.2049194677871149) 0%, rgba(106, 176, 76, 0.19931722689075626) 100%);
    justify-content: flex-end;
}

section.layout .item.extra {
    background: rgb(255, 190, 118);
    background: linear-gradient(180deg, rgba(255, 190, 118, 0.20211834733893552) 0%, rgba(255, 190, 118, 0.19931722689075626) 100%);
    justify-content: flex-start;
}

@media only screen and (max-width: 600px) {
    section.layout {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    section.layout .item {
        width: 100%;
        height: 50%;
        justify-content: center;
        padding: 0;
    }

    section.layout .item.cicek {
        justify-content: center;
    }

    section.layout .item.extra {
        justify-content: center;
    }

    section.layout .item img {
        height: 35vh;
    }
}