body {
    image-rendering: smooth;
}

@media only screen and (min-width: 650px) {
    body > section {
        display: grid;
        grid-template-columns: repeat(auto-fit, calc(350px - 1em));
        margin: 0 auto;
        justify-content: space-around;
        justify-items: center;
        align-items: center;
        gap: 0.75em;
    }
    body > section img {
        width: calc(350px - 1em);
    }
}

@media only screen and (max-width: 650px) {
    body > section {
        display: flex;
        flex-direction: column;
        gap: 1em;
    }
}

.fullscreen {
    z-index: 9999;
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    object-fit: contain;
    object-position: center;
    background: var(--dark);
}

h2 {
	margin-bottom: 1rem;
}

img {
	border: 1px solid black;
}
}