body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
	background-image: url('https://rayamed.com.sa/Images/bg.jpg'); /* Add your background image URL here */
    background-size: cover; 
	background-position: center;
}

.container {
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2em;
    margin-bottom: 1em;
}

#countdown {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

#countdown div {
    background-color: #00aeef;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.2em;
    flex: 1 1 100px;
    text-align: center;
}

footer {
    text-align: center;
    width: 100%;
    color: #333;
    padding: 10px;
    position: fixed;
    bottom: 0;
    background-color: #f7f7f7;
}
