/* style.css */

/* Reset margins and paddings */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li {
    margin: 0;
    padding: 0;
}

/* Ensure the body takes up the full height */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main content should flex to fill available space */
main {
    flex: 1;
}

/* Custom styles for the header */
.navbar-brand img {
    margin-right: 10px;
}

/* Custom styles for the footer */
footer {
    background-color: #f8f9fa;
}

#countdown {
    font-size: 1rem;
    color: #6c757d;
}