* {
    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: #fffaf5;
    color: grey;

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

img {
    width: 260px;
    aspect-ratio: 2.5 / 3;
    object-fit: cover;
}

@media (max-width: 800px) {
    img {
        width: 150px;
        aspect-ratio: 2.5 / 3;
        object-fit: cover;
    }
}

.parent {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: .5rem;
    row-gap: .3rem;
  }