* {
    margin: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.25;
    -webkit-text-size-adjust: 100%; /* Prevents Safari from auto-resizing text. */
    background-color: aliceblue;
    text-align: center;

    /* Vertically and horizontally centers #wrapper */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    

}

img {
    width: 100%;
    object-fit: contain;
    
}

#wrapper {
    width: 90%;
    max-width: 800px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    background-color: cornflowerblue;
}

.left,
.right {
    padding: 15px;
    background-color: white;
}