/* Vertically center the content on the awards section*/
.gallery-item {
    display: flex;
    align-items: center; /* Vertically center the content */
    justify-content: center; /* Optionally center the content horizontally */
    height: 100%; /* Ensure the gallery item takes up full height */
}
.gallery-item--spacer {
    display: flex;
    align-items: center; /* Vertically center the image inside the spacer */
    justify-content: center; /* Horizontally center the image */
    margin: 20px;
    height: auto; /* Ensure it doesn't stretch if not needed */
}