.zig-zag {
    display: flex;
    gap: 2%;
    margin: auto;
    flex-wrap: wrap;
}

.zig-zag h1 {
    font-size: 25px;
    font-weight: 500;
}

.zig-zag>div {
    width: 49%;
    padding: 2rem;
    position: relative;
}

.zig-zag>div p {
    margin-bottom: 8px;
    font-size: 17px;
}

.zig-zag>div h1 {
    margin-bottom: 1.5rem;
}

.zig-zag>div:nth-child(1) {
    background: #e3fbf5;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.zig-zag>div:nth-child(2) { 
    padding: 1rem;
    background: #b9f7e8;
    border-radius: 32px;
    height: 430px;
}

.zig>div {
    margin-bottom: 1.8rem;
}

.zig>div:nth-child(even)  {
    flex-direction: row-reverse;
}

.zig-zag>div:nth-child(even) img {
    width: 100%;
    background: #b9f7e8;
    border-radius: 32px;
    height: 100%;
    object-fit: contain;
}

.emoji {
    /* position: absolute;
    right: 2rem;
    bottom: 2rem; */
    transform: rotate(18deg);
    width: 90px;
}

.zig>div:last-child {
    margin-bottom: 0;
}

.zig-zag>div:nth-child(1)>div:nth-child(2) {
    text-align: right;
}