.galery-container
{
    position: relative;
    top: 180px;
    margin: 0 auto;
    max-width: 1100px;
    width: 100%;
    height: auto;
    margin-bottom: 250px;
}
.galery-title
{
    text-align: center;
    font-size: 30px;
    color:#16243a ;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    padding: 20px;
}
.gallery img {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s;
}
.gallery img:hover {
    transform: scale(1.05);
}
.modal {
    display: none;
    position: fixed; /* absolute yerine fixed kullan */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal img {
    max-width: 90%;
    max-height: 80%;
}
.close, .prev, .next {
    position: absolute;
    color: white;
    font-size: 30px;
    cursor: pointer;
}
.close {
    top: 20px;
    right: 30px;
}
.prev {
    left: 20px;
}
.next {
    right: 20px;
}