/* Fullscreen Background */
body {
    font-family: Arial, sans-serif;
    background: url('https://wallpapers.com/images/hd/design-black-background-lh6hd1i0ecusnwzg.jpg') no-repeat center center/cover;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Black Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* 90% black tint */
    z-index: 1;
}

/* Main Container */
.clock-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    color: white;
}

/* Clock Styling */
#clock {
    font-size: 6rem;
    font-weight: bold;
}

/* Date Styling */
#date {
    font-size: 2rem;
    margin-top: 10px;
}

/* Weather Info */
#weather {
    font-size: 1.5rem;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 5px;
}