body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #282c34;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    flex-direction: column; /* Öğeleri alt alta sırala */
    align-items: center;
    background: #363a45;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 
        0 0 30px rgba(0, 255, 110, 0.5), 
        0 0 60px rgba(0, 255, 110, 0.3);
}

#date {
    font-size: 1.8rem; /* Tarih için daha küçük boyut */
    color: #e0e0e0; /* Beyaza yakın bir renk */
    margin-bottom: 20px; /* Saat ile arasında boşluk bırak */
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
}

#clock {
    font-size: 8rem;
    color: #00ff6e;
    padding: 0 10px; /* İç dolguyu sadece yatayda koru */
    text-shadow: 0 0 10px rgba(0, 255, 110, 0.8);
    transition: all 0.5s ease;
}

/* Küçük ekranlar için boyutu küçültme */
@media (max-width: 600px) {
    #date {
        font-size: 1.2rem;
    }
    #clock {
        font-size: 4rem;
    }
}