* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;

}

.galeri-yazi {
    text-align: center;
    margin-bottom: 100px;
}

.containerrr {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 8%;
    margin-top: 100px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}

.gallery a {
    display: grid;
    overflow: hidden;
    height: 400px;
    position: relative;

}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery a:hover img {
    transform: scale(1.1);
    /* Fotoğrafın üzerine gelindiğinde büyüt */
}

.zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    font-size: 24px;
    /* İkon boyutu */
    color: white;
    /* İkon rengi */
}

.gallery a:hover .zoom-icon {
    display: block;
    /* Fotoğrafın üzerine gelindiğinde ikonu göster */
}