@charset "UTF-8";

.brief {
    display: grid;
    grid-gap: 10px;
    gap: 10px;
    grid-template: "image text" auto / 200px auto;
}

.brief img {
    grid-area: image;
    width: 200px;
    border-radius: 100%;
    padding: 8px 0;
}

.brief .text {
    grid-area: text;
    padding: 8px 0;
    margin: auto;
}

.links { font-size: 22px; }

.screenshot-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    margin-bottom: 5px;
}

.screenshot-list img {
    width: 100%;
    image-rendering: auto;
}

.screenshot-list img:hover { filter: brightness(0.95); }

#preview {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 20;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#preview-img {
    image-rendering: auto;
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
}

#preview-caption {
    text-align: center;
    font-weight: 900;
    font-size: 22px;
    margin-top: 5px;
}