body {
    background-color: beige;
}
#wrapper {
    font-family: sans-serif;
    width: 1200px;
    margin: 0 auto;
}

#content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

h1 {
    font-size: larger;
    font-weight: bolder;
    text-align: center;
    margin: 0.5em auto;
}

.entry {
    display: block;
    width: 480px;
    height: fit-content;
    overflow: hidden;
    background-color: #ffc46c;
    border: 1px solid #333;
    border-radius: 3px;
}

.entry span {
    display: inline-block;
    text-align: center;
    width: 100%;
    margin: 0.25em 0;
}

img {
    width: 480px;
}

a {
    color: black;
}