body{
margin:0;
background:black;
color:white;
font-family:Arial;
overflow:hidden;
}

.topbar{
background:#002f5b;
display:flex;
justify-content:space-around;
padding:15px;
font-size:28px;
}

.main{
display:flex;
height:75vh;
}

.image{
flex:3;
}

.image img{
width:100%;
height:100%;
object-fit:cover;
}

.side{
flex:1;
background:#111;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
}

.clock{
font-size:60px;
margin:20px;
}

.count{
font-size:38px;
color:#00ff88;
text-align:center;
}

.zone{
margin-top:20px;
font-size:22px;
}

.ticker{
position:absolute;
bottom:0;
width:100%;
background:#111;
padding:10px;
font-size:26px;
overflow:hidden;
white-space:nowrap;
}

#tickerText{
display:inline-block;
padding-left:100%;
animation:scroll 35s linear infinite;
}

@keyframes scroll{
0%{transform:translateX(0)}
100%{transform:translateX(-100%)}
}

.ramadan{

margin-top:30px;
font-size:26px;
color:#FFD700;
text-align:center;

}
