#helpFullscreen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    padding: 15% 5% 20% 5%;

    background-color: white;

    display: grid;
    align-items: center;
    grid-template-columns: 50px 1fr 50px;
    grid-template-rows: 50px 1fr;
    gap: 10px 10px;
    grid-template-areas:
        ". title close"
        "image image image"
}

#helpFullscreen * {
    text-align: center
}

#helpFullscreen #close {
    grid-area: close;
}

#helpFullscreen #title {
    grid-area: title;
    font-size: 1.5rem;
    font-weight: bold;
}

#helpFullscreen #img {
    grid-area: image;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}

#helpFullscreen #img img {
    width: 100%;
}