body {
    margin: 0;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    height: 100vh;
    transition: background 0.6s ease;
}

#container {
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

#clock {
    font-size: 5em;
    font-weight: bold;
    padding: 20px 40px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.034);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

#date {
    margin-top: 20px;
    font-size: 2em;
    font-weight: bold;
    color: #f0f0f0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
#greeting {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 2.5em;
    font-weight: 600;
    color: #fdfdfd;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

