#cssportal-grid {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    width: 100%;
    height: 100%;
}

button#load-more-images {
    display: none;
}
#div1 {
    grid-area: 1 / 1 / 3 / 3;
    background-size: cover;
    background-position: center;
}
#div2 {
    grid-area: 1/3/2/4;
    background-size: cover;
    background-position: center;
}
#div3 {
    grid-area: 1/4/2/5;
    background-size: cover;
    background-position: center;
}
#div4 {
    grid-area: 2/4/3/5;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 270px;
}
#div5 {
    grid-area: 2/3/3/4;
    background-size: cover;
    background-position: center;
}
#div6 {
    grid-area: 1 / 5 / 3 / 7;
    background-size: cover;
    background-position: center;
}
#div7 {
    grid-area: 3/1/4/2;
    background-size: cover;
    background-position: center;
}

#cssportal-grid div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.galeria-kep {
    display: inline-block;
    margin: 10px;
    position: relative;
}

.galeria-kep img {
    max-width: 150px;
    height: auto;
}

.galeria-kep .torles-gomb {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    border: none;
    padding: 5px;
    cursor: pointer;
}