

.snowflake {
    position: absolute;
    font-size: 20px;
    z-index:99999;
    background: transparent;
    color:white;
}

.star {
    position: absolute;
    background-color: #FFD700; /* White color for stars */
    border-radius: 50%; /* Circular shape */
    pointer-events: none; /* Stars shouldn't interfere with content */
    animation: twinkle 2s infinite; /* Animation for twinkling */
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0; /* Stars are not visible at the start and end of animation */
    }
    50% {
        opacity: 1; /* Stars are fully visible in the middle of animation */
    }
}

#countdown-container {
    font-family: Arial, sans-serif;
    background-color: #002e4e; /* Dark blue background color */
    text-align: center;
    color: #fff; /* White text color */
}

#days, #hours, #minutes, #seconds {
    background-color: #f99c00; /* Orange background color for the numbers */
    color: #fff; /* White text color for the numbers */
    padding: 10px;
    border-radius: 10px;
    font-size:1.2em;
}