body {
    background-color: antiquewhite;
    font-family: Arial, Helvetica, sans-serif;
    color: antiquewhite
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid {
    margin: 20px;
    padding: 10px;
    background-color: rgb(139, 7, 7);
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
}

header {
    background-color: brown;
    margin: 0;
    padding: 10px;
}

.tall {
    grid-row: span 2;
}

.wide {
    grid-column: span 2;
}