﻿
/* Diğer stiller burada */
@keyframes moveArrow {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(6px);
    }

    100% {
        transform: translateX(0);
    }
}
body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: #fff;
    margin: 0;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.5rem;
    margin: 30px 0 10px;
    color: #ffc107;
}

p {
    max-width: 900px;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn {
    margin-top: 15px;
    background-color: #00c9a7;
    padding: 12px 26px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s, transform 0.3s;
}

    .btn:hover {
        background-color: #00b195;
        transform: translateY(-2px);
    }

    .btn .arrow {
        display: inline-block;
        animation: moveArrow 1s infinite;
        font-size: 1.2rem;
    }




.arrow-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #ffc107;
    color: #000;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

    .arrow-button:hover .arrow {
        animation: moveArrow 0.6s infinite;
    }


footer {
    margin-top: 60px;
    font-size: 0.9rem;
    opacity: 0.6;
}
