/* styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: #4682b4;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
}

main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.countdown {
    background-color: #4682b4; /* Updated background color */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow for depth */
    margin: 20px;
    padding: 20px;
    width: 300px;
    text-align: center; /* Center the text inside the countdown */
}

.countdown h2 {
    color: white; /* Ensure the text color contrasts well */
}

.timer {
    font-size: 1.5em;
    font-weight: bold;
}

.footer {
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space out the content */
    align-items: center; /* Center items vertically */
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: left; /* Align text to the left */
    font-size: 0.8em;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.flip {
    display: inline-block;
    padding: 10px;
    background-color: #e6f7ff;
    border-radius: 5px;
    margin: 5px;
}

.season-image {
    width: 100%;
    max-width: 280px;
    max-height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}
