    * {
    padding: 0;
    margin: 0;

    scroll-behavior: smooth;
}

html{
    
        overflow-x: hidden;
        overflow-y: scroll;

    
    background-color: #276ea6;
}

.Newstitle{
    text-align: center;
    margin-top: 10vh;
    color: white;
    font-family: headingpro;
}

.Newslisting {
  background-color: white;
  max-width: 700px;
  margin: 0 auto 30px auto; /* centers horizontally, with bottom margin */
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.Newslisting:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.Newslisting li {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0; /* reset because container has padding */
}

.Newslisting li h3 {
  font-size: 1.75em;
  font-weight: bold;
  color: #276ea6;
  font-family: MonsterRat;
  margin-bottom: 10px;
  transition:
    color 150ms ease-out;
}

.Newslisting a {
  color: #276ea6;
  text-decoration: none;
  display: block;
}

.Newslisting a:hover h3 {
  color: #007acc; /* subtle color shift on hover */

  transition:
  color 150ms ease-out;

}

.Newslisting p {
  color: #276ea6;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.05em;
  line-height: 1.4;
  margin: 0;
  max-width: 95%;
}