#header * {
    text-align: center;
}
#art ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2em;
    justify-content: center;
    padding: 2em;
    max-width: 1400px;
    margin: 0 auto;
}
#art li {
    list-style: none;
    width: 100%;
}
#art a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    border: 2px solid #75B08B;
    border-radius: 8px;
    padding: 1.5em;
    background-color: rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease-in-out;
    height: 100%;
}
#art a:hover {
    transform: scale(1.02);
}
#art h3 {
    margin-top: auto;
    padding-top: 0.75em;
    font-size: 1.75em;
    text-align: center;
}
.img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    margin-bottom: 0.5em;
    background-size: cover;
    background-position: center;
}
.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}
#event {
    border-top: dashed 1px #75B08B;
    padding-top: 1em;
    border-bottom: dashed 1px #75B08B;
    padding-bottom: 1em;
}
#event * {
    text-align: center;
}
#event ul {
    list-style-type: disc;
    list-style-position: inside;
    font-size: 1.5em;
}