.gallery-photo {

    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    margin-bottom: 25px;
    cursor: pointer;
}

.gallery-window {
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
}

.gallery-window .controls {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 30px;
}

.gallery-window .controls i:hover{
    color: #cdc9cd;
    cursor: pointer;
}

.gallery-window img {
    /* width: 90%; */
    max-width: 90%;
    max-height: 90%;
    margin: 30px;
}