/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    text-align: center;
}

header {
    width: 100%;
}

.navbar-top {
    background-color: #333;
    color: #fff;
    padding: 5px;
    font-size: 14px;
}

.navbar-bottom {
    padding: 15px;
    background-color: #f5f5f5;
}

.logo {
    width: 184px;
    height: 150px; /* بناءً على أبعاد الشعار المتاحة */
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.countdown {
    font-size: 1.5em;
    color: #333;
    margin-top: 20px;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 10px;
    width: 100%;
    text-align: center;
    font-size: 12px;
}
