html {
    font-family: Helvetica Neue, Helvetica, sans-serif;
    background-color: lightblue;
}

body {
    max-width: 800px;
    padding: 20px;
    border-radius: 10px;
    background-color: ghostwhite;
    color: #222;
}

img {
    width: 100%;
}

.two-column {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    gap: 10px;
}
