body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    /* styles.css */

    /* Font styling */
    font-family: "Arial, Helvetica, sans-serif";
    font-size: 18px;
    font-style: italic;
    font-weight: bold;

    /* Text color */
    color: #333; /* Use your desired color code */

    /* Text alignment */
    text-align: center;

    /* Text decoration (e.g., underline) */
    text-decoration: underline;

    /* Letter spacing */
    letter-spacing: 1px;

    /* Line height */
    line-height: 1.5;

    /* Text shadow */
    text-shadow: 2px 2px 4px #000;

    /* Background color behind the text */
    background-color: #efe4bf;

    /* Text transform (e.g., uppercase) */
    text-transform: uppercase;

    /* Control how text is displayed when it overflows */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

    /* Text animation (optional) */
    transition: color 0.3s ease;

}

header {
    background-color: #a7e6aa;
    color: white;
    padding: 20px;
}

main {
    padding: 20px;
}

#countdown {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.widget {
    background-color: #a7e6aa;
    color: white;
    border-radius: 5px;
    padding: 10px;
    margin: 10px;
    font-size: 24px;
    display: inline-block;
}

#event-details {
    margin-top: 20px;
}

footer {
    background-color: #a7e6aa;
    color: white;
    padding: 10px;
    position: sticky;
    bottom: 0;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
/* Style the border around the image */
img {
    border: 2px solid #4CAF50; /* You can adjust the border width and color */
}

.circle {
    width: 80px; /* Set the width and height to create circles */
    height: 80px;
    line-height: 80px; /* Center the text vertically */
    text-align: center;
    border-radius: 50%; /* Make it a circle */
    background-color: #4CAF50; /* Circle background color */
    color: white; /* Circle text color */
    font-size: 24px; /* Text size */
    margin: 5px; /* Spacing between circles */
    display: inline-block;
}