﻿/* Tarih & Saat Stili */
#datetime {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    background: rgba(0, 49, 83, 0.8);
    padding: 8px 15px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
}

/* Hareketli Başlık Stili */
.system-title {
    font-size: 22px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    text-align: center;
    margin-top: 10px;
    animation: fadeIn 2s ease-in-out;
}

    .system-title span {
        display: block;
        font-size: 18px;
        color: black;
        animation: pulse 1.5s infinite alternate;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    from {
        opacity: 0.7;
    }

    to {
        opacity: 1;
    }
}
