.main-flow {
    display:grid;
    grid-template-columns: 1fr 1fr;
    background-color:rgb(255, 210, 143);
    padding: 2rem;
    font-size: 1.2rem;
    max-width: 100%;
}

h1 {
    font-size: 3rem;
    font-weight: 400;
}

.left-column {
    grid-column: 1 / 2;
}

.left-column img {
    width: 75%;
}

.right-column {
    grid-column: 2 / 3;
    padding: 50px;
}

.smaller-text {
    font-size: 1.3rem;
}