/* Genel ayarlar */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fdd835, #fbc02d);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333333;
}

.container {
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    width: 90%;
    animation: fadeIn 1s ease-in-out;
    box-sizing: border-box;
}

h1 {
    font-size: 2.5rem;
    color: #212121;
    margin-bottom: 15px;
    font-weight: 700;
}

.message {
    font-size: 1.5rem;
    color: #616161;
    margin-bottom: 20px;
    line-height: 1.4;
}

.contact {
    font-size: 1rem;
    color: #424242;
}

.contact h3 {
    font-size: 1.2rem;
    color: #333333;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact p {
    margin: 8px 0;
}

.contact a {
    color: #ff8f00;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.contact a:hover {
    color: #e65100;
    border-bottom: 2px solid #e65100;
}

/* Animasyon */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil uyum (Media Queries) */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .message {
        font-size: 1.2rem;
    }

    .contact h3 {
        font-size: 1rem;
    }

    .contact p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    .message {
        font-size: 1rem;
    }

    .contact h3 {
        font-size: 0.9rem;
    }

    .contact p {
        font-size: 0.8rem;
    }

    .container {
        padding: 15px;
    }
}
