.custom-shape {
    position: absolute;
    top: 0;
    left: 15%;
    width: 100px;
    height: 100px;
    display: none; /* Varsayılan olarak gizli */
}

@media only screen and (min-width: 1851px) {
    .custom-shape {
        display: block; /* Sadece 1851px ve üzeri ekranlarda görünür */
    }

    .custom-shape .shape {
        animation: scroll-up 2s linear infinite;
        opacity: 1 !important; /* Opaklık sabit kalır */
    }
}

