body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #011d50;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.split {
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    transition: background-color 0.5s ease;
    position: relative; /* Efekt için pozisyon ayarı */
    overflow: hidden; /* Taşmalar için gizle */
}

.left {
    background-color: #011d50;
    border-left: 1px solid #234b83;
    border-right: 1px solid #234b83;
}

.right {
    background-color: #011d50;
    border-left: 1px solid #234b83;
    border-right: 1px solid #234b83;
}

.centered img {
    width: 120px; /* Görsel boyutu */
    margin-bottom: 20px;
    animation: imgMove 2s ease-in-out infinite alternate;
    transition: transform 0.3s ease; /* Görsel için geçiş efekti */
}

.centered img:hover {
    transform: scale(1.1); /* Hover ile büyütme efekti */
}

.centered h2 {
    font-size: 22px;
    margin: 10px 0;
    animation: fadeInText 1.5s ease-in-out;
    opacity: 0; /* Başlangıçta görünmez */
    animation: fadeInText 1.5s forwards; /* Eş zamanlı animasyon */
}

.centered p {
    font-size: 16px;
    color: #82a5c7;
    margin-bottom: 20px;
    animation: fadeInText 2s ease-in-out;
    opacity: 0; /* Başlangıçta görünmez */
    animation: fadeInText 2s forwards; /* Eş zamanlı animasyon */
}

@keyframes imgMove {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-10px);
    }
}

@keyframes fadeInText {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.btn-ts {
    background: transparent;
    transition: background .2s ease-in-out, border .2s ease-in-out, transform .2s ease-in-out; /* Buton için geçiş efekti */
    border: 3px solid #FFFFFF;
    padding: 10px 40px;
    border-radius: 100px;
    text-decoration: none;
    color: white;
    font-family: math;
}

.btn-ts:hover {
    color: white;
    background-color: rgba(35, 75, 131, 0.2);
    transform: scale(1.05); /* Hover ile buton büyütme efekti */
}

/* Mobil uyumlu CSS */
@media (max-width: 768px) {
    .split {
        width: 100%;
        height: 50%;
    }

    .centered img {
        width: 80px; /* Mobilde görsel boyutunu küçült */
        margin-bottom: 15px; /* Alt boşluğu azalt */
    }

    .centered h2 {
        font-size: 20px; /* Başlık boyutunu küçült */
    }

    .centered p {
        font-size: 14px; /* Açıklama metni boyutunu küçült */
    }

    .btn-ts {
        padding: 8px 30px; /* Buton padding değerlerini küçült */
    }
}

@media (max-width: 480px) {
    .centered img {
        width: 60px; /* Daha küçük ekranlar için daha küçük görsel boyutu */
    }

    .centered h2 {
        font-size: 18px; /* Başlık boyutunu daha da küçült */
    }

    .centered p {
        font-size: 12px; /* Açıklama metni boyutunu daha da küçült */
    }

    .btn-ts {
        padding: 6px 20px; /* Buton padding değerlerini daha da küçült */
    }
}