/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    background: #000; /* Fallback color */
    color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

/* Full-Screen Background */
body {
    background-size: cover; /* Ensure the background image covers the whole screen */
    background-position: center; /* Center the background image */
    background-attachment: fixed; /* Keeps the background fixed when scrolling */
    transition: background-image 1s ease-in-out; /* Smooth transition for background changes */
}

.container {
    position: relative;
    z-index: 10; /* Keeps content on top of the background */
}

/* Styling for Time and Greeting */
.greeting {
    font-size: 2rem;
    margin: 0.5rem;
    font-weight: 600;
}

.time {
    font-size: 4rem;
    margin: 1rem;
    font-weight: 700;
}

.date {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}
