body{
    /* margin: 0; */
}

.grid{
    display: grid;
    grid-template-columns: repeat(3, 200px);
    justify-content: center;
    align-content: center;
    grid-gap: 10px;
    height: 100vh;
}

.grid img{
    width: 200px;
    height: 200px;
    cursor: pointer;
}

#lightbox{
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
}
.disable{
    display: none;
    width: 0;
    height: 0;
}

.active{
    visibility: visible;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

#lightbox img{
    max-width: 80%;
    max-height: 80%;
    padding: 4px;
    background-color: black;
    border: 1px solid white;
    margin-top:-50px;
}