* {
    box-sizing: border-box;
}
body {
    background: #eee;
    margin: 10vh;
}
.page {
    height: 80vh;
    padding: 2em;
    background: white;
    aspect-ratio: 210/297;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(8, 1fr);
    gap: .5em;
}
#txt {
    position: relative;
    z-index: 1;
    font-size: .8rem;
}
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}