body {
background-color: black;
padding: 20px 10px;
}

h1 {
font-family: Arial, Helvetica, sans-serif;
font-size:40px;
text-align: center;
color: Yellow;
padding: 20px 0px;
margin: 0px;
}

h2 {
font-family: Arial, Helvetica, sans-serif;
font-size: 50px;
text-align: center;
color: White;
padding: 30px 0px 0px 0px;
margin: 0px;
}

h3 {
font-family: Arial, Helvetica, sans-serif;
font-size: 100px;
text-align: center;
color: White;
padding: 50px 0px 0px 0px;
margin: 0px;
}

p {
font-family: Arial, Helvetica, sans-serif;
text-align: center;
color: White;
padding: 0px 0px;
margin: 0px;
}

a:link, a:visited {
  color: yellow;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

a:hover, a:active {
  color: black;
  background-color: white;
  border-radius: 20px;
}

/* BBC News Styling */

#bbc-news {
    max-width: 650px;
    margin: 0 auto;
    padding: 1rem;
    font-family: Arial, sans-serif;
}

.news-item {
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 1rem;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item h3 {
    margin: 0 0 0.3rem 0;
    font-size: 1.2rem;
}

.news-item h3 a {
    text-decoration: none;
    color: #005bbc;
}

.news-item h3 a:hover {
    text-decoration: underline;
}

.news-item .summary {
    margin: 0 0 0.4rem 0;
    line-height: 1.4;
    font-size: 0.95rem;
    color: #444;
}

.news-item small {
    color: #666;
    font-size: 0.8rem;
}