.map-grid {
    width: 75%;
    display: grid;
    margin: auto;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 1fr;
    filter: drop-shadow(0 7px 3px rgba(0, 0, 0, 1))
}

.map {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 20px;
    display: grid;
    align-items: baseline;
    grid-auto-flow: column;
    grid-template-rows: auto auto auto;
    justify-items: center;
}

.map-pool-img {
    max-height: 200px;
    padding: 10px;
}

.map-header {
    grid-column: span 3;
    background-color: var(--header-background-color);
    color: var(--text-color);
    font-size: x-large;
    padding-bottom: 5px;
    padding-top: 5px;
    display: grid;
    align-items: center;
    white-space: nowrap;
    margin-bottom: 5px;
    text-decoration: none;
    text-align: center;
}

.map-name {
    font-size: larger;
}

.map-description {
    margin: 10px;
}