#exhibitions_container {
    position: relative;
    width: calc(100% - 30px);
    height: fit-content;
    margin: 15px;
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.exhibition_container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 250px;
    background-color: var(--surface-container);
    border-radius: var(--corner-large);
    filter: drop-shadow(var(--elevation-level-1));
}

.exhibition_container div {
    color: var(--on-surface)
}