body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
}

.container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 600px;
    /* Set the image and its properties */
    background-image: url('image.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;

    /* Set a semi-transparent color that will blend with the image */
    background-color: rgba(255, 255, 255, 0.8); /* A semi-transparent white layer */

    /* Blend the color and image */
    background-blend-mode: lighten; /* Or `overlay`, `darken`, etc. */
}

h1 {
    color: #333;
}

.date-inputs {
    margin-bottom: 20px;
}

.date-inputs label, .date-inputs input {
    margin: 0 10px;
}

.date-inputs input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.progress-container {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin: 20px 0;
}

.progress-bar {
    background-color: #4caf50;
    height: 30px;
    width: 0%;
    transition: width 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
}

.countdown-text {
    font-size: 1.2em;
    color: #555;
}
.emoji-container {
    font-size: 1.5rem; /* Makes emojis larger and easier to see */
    line-height: 1; /* Adjust spacing between lines of emojis */
    word-wrap: break-word; /* Allows emojis to wrap to the next line */
}
