.screenshot-gallery {
    display: grid;
    margin-top: 20px;
    margin-bottom: 20px;
    row-gap: 20px;
}
.screenshot-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.screenshot {
    max-width: 250px;
    border-radius: 20px;
}

#fullscreen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    opacity: 0;

    background-color: black;

    transition: opacity 0.5s;

    --message-width: 50px;
}
.image-container {
    display: block;
    width: 100%;
    height: calc(100% - var(--message-width));
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.exit-message {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-style: italic;
    color: white;
    height: var(--message-width);
}

#gnome-logo {
    width: 250px;
    border-radius: 125px;
}

/* COMPACT */
@media(max-width: 645px) {
    .screenshot-gallery {
        grid-template-columns: 1fr;
    }
    .rstack {
        flex-direction: column;
    }
    .rstack img {
        width: auto;
    }
}
/* Medium */
@media(min-width: 645px) {
    .screenshot-gallery {
        grid-template-columns: 1fr 1fr;
    }
}
/* Large */
@media(min-width: 1200px) {
    .screenshot-gallery {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
