body {
    background-image: url("TBgallerySpritex10.gif");
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    place-content: center;
}

.gallery {
    margin-top: 0%;
    width: 80%;
    height: 50%;
    display: grid;
    place-self: center;
    place-content: center;
    place-items: center;
    grid-column-gap: 5%;
    grid-row-gap: 5%;
    grid-template-columns: fit-content(30%) fit-content(40%);
    grid-template-rows: fit-content(40%);
}

img {
    transition: transform 0.25s ease;
    width: 100%;
    height: 100%;
}

    img:hover {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

div.transbox {
    margin: 30px;
    background-color: #191a1f;
    border: 5px solid white;
}

    div.transbox p {
        margin: 5%;
        font-weight: bold;
        font-size: 24px;
        color: ghostwhite;
    }
