body {
    background: #151419;
    color: #fbfbfb;
    font-family: helvetica;
    min-width: 600px;
    margin: 0px;
}

.albcenter {
    font-family: helvetica;
    display: flex;
    justify-content: center;
    align-items: center;
}

.albwrap {
    padding: 20px;
    width: 90%;
}

@media (max-width: 1500px) {
    .albwrap {
        padding: 20px;
        width: 100%;
    }
}

.albumcontainer {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    grid-auto-flow: row dense;
}

.ae_horizontal {
    width: fit-content;
    height: fit-content;
}

.ae_vertical {
    width: fit-content;
    height: fit-content;
}

.ae_highlight {
    width: fit-content;
    height: fit-content;
    grid-column: span 2;
    grid-row: span 3;
}

.albumcontainer > div {
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-size: 2em;
    color: white;
    font-family: helvetica;
}

.fitbox {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    color: white;
    font-family: helvetica;
}

img {
    border-radius: 2px;
    max-width: 100%;
    max-height: 100%;
}
video {
    border-radius: 2px;
    max-width: 100%;
    max-height: 100%;
}
/*
.click-zoom input[type="checkbox"] {
    display: none;
}

.click-zoom img {
    transition: transform 0.25s ease;
    cursor: zoom-in;
}

.click-zoom input[type="checkbox"]:checked ~ img {
    transform: scale(2);
    cursor: zoom-out;
}
*/
.map {
    height: 500px;
    width: 100%;
    marging: 20px;
}

.note {
    background: #1b1b1e;
    border-radius: 2px;
    color: #fbfbfb;
    padding: 10px;
    margin: 5px;
    font-size: 20px;
}

button {
    min-width: 100px;
    border-radius: 2px;
    border: none;
    text-decoration: none;
    padding: 10px;
    margin: 5px;
    color: #fbfbfb;
    background: #f56e05;
    font-family: helvetica;
    font-size: 2em;
}

button:hover {
    background: #fbc59a;
}
