body{
font-family:Arial;
margin:0;
background:#f5f5f5;
}

header{
display:flex;
justify-content:space-between;
background:#111;
color:white;
padding:15px;
}

nav a{
color:white;
margin:10px;
text-decoration:none;
}

.breaking{
background:red;
color:white;
padding:10px;
}

.top-news{
display:flex;
padding:20px;
gap:20px;
}

.main-news img{
width:100%;
}

.side-news{
display:flex;
flex-direction:column;
gap:10px;
}

.news-item{
display:flex;
gap:10px;
}

.news-item img{
width:100px;
}

.news-grid{
padding:20px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
background:white;
padding:10px;
box-shadow:0 0 10px #ccc;
}

.card img{
width:100%;
}

.school{
background:#00796b;
color:white;
text-align:center;
padding:40px;
}

footer{
background:#111;
color:white;
text-align:center;
padding:20px;
}