* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    height: 100vh;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin: 0;
}

header {
    position: absolute;
    top: 20px;
    text-align: center;
    width: 100%; /* Ensure header spans the width of the viewport */
}

.logo {
    width: 250px;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 1; /* Allow container to take up the remaining space */
}

h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px; /* Space between title and countdown */
}

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

#countdown-timer {
    font-size: 48px;
    color: #aa0a0a; /* Countdown color */
}

footer {
    position: absolute;
    bottom: 20px;
    text-align: center;
    width: 100%;
}

footer p {
    color: #777;
    font-size: 14px;
}
