body {
    background-color: #111;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  
  nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  nav li {
    margin-right: 20px;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  .top-story {
    background-color: #222;
    padding: 20px;
    text-align: center;
    border-radius: 25px;
  }
  
  .top-story img {
    max-width: 100%;
    border-radius: 30px;
  }
  
  .featured-stories {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    
  }
  
  .featured-stories article {
    flex-basis: calc(33.33% - 10px);
    
  }
  
  .featured-stories article img {
    max-width: 100%;
    border-radius: 30px;
  }
  
  .latest-stories {
    margin-top: 20px;
  }
  
  .latest-stories h2 {
    font-size: 24px;
  }
  
  .latest-stories ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .latest-stories li {
    margin-bottom: 10px;
  }
  
  .latest-stories a {
    color: #fff;
    text-decoration: none;
  }
  
  .latest-stories a:hover {
    text-decoration: underline;
  }
  
  footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
  }
  