

#fullpage {
    display: none;
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: contain;
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-color: #02050749;
}

#fullpage::before {
    position: absolute;
    top: 12px;
    right: 36px;
    cursor: pointer;
    color: #eee;
    font: var(--fa-font-solid);
    font-size: 2em;
    width: 1.2em;
    line-height: 1.2em;
    text-align: center;
    content: "\f00d";
    border-radius: 100%;
    background-color: #02050749;
    box-shadow: 0 0 16px #0205078c;
}

#gallery {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 0;
}

#gallery::before {
    top: 10em;
    bottom: 24em;
}

.column {
    width: 40ch;
    max-width: 100%;
}

.column:first-child {
    padding-top: 3em;
}

img {
    display: block;
    object-fit: contain;
    width: 100%;
    min-height: 15ch;
    height: auto;
    border: 2px solid #749bff;
    border-radius: 32px;
    box-shadow: 1px 2px 16px 1px #62a1feaa;
    margin: 18px 0;
    cursor: pointer;
}

video {
    display: block;
    margin: 3em auto 0;
    max-width: 100%;
    max-height: calc(100vh - 3.5rem);
    border-radius: 16px;
    border: 2px solid #749bffcc;
    box-shadow: 1px 2px 16px 0 #62a1fe88;
}