#images {
    display: grid;
    max-width: 90%;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: 4vmin;
    margin-bottom: 4vmin;
}

.image img {
    max-width: 100%;
    flex-shrink: 1;
    margin-top: 0;
}

/* Mobile */
@media only screen and (max-width: 480px) {
    #yapping-content {
        width: 90%;
    }
    main {
        margin-top: 10vmin;
    }
}