body{
    font-family: Arial, sans-serif;
    background-color: #2c2d2d;
    color: white;
}

header{
    text-align: center;
}

.content {
    margin-top : 80px; /* Adjusted to account for fixed top navigation */
    margin-bottom: 80px;
}

.rankingContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: black;
}

section{
    text-align:left;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 20px;
    background-color: white;
    border-radius: 5px;
    padding: 10px;
    margin: 10px;
    width: 500px;
} 

article {
  display: flex;
  flex-direction: column;
  justify-content: center;
}  

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px; /* optional: space between rankings */
}
  
ol {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px; /* optional: space between rankings */
}

footer{
    text-align: center;
    margin-top: 100px;
}    

/* Add a black background color to the top navigation */
.topnav {
  background-color: black;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}  

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}   

/* Change the color of links on hover */
.topnav a:hover {
  background-color: lightgrey;
  color: black;
}   

.topnav {
  width: 100%;
}

p {
    text-align: center;
    font-size: 20px;
}

.aboutH2 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.newsH2 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.newsDiv {
    background-color: white;
    color: black;
    border-radius: 5px;
    padding: 10px;
    margin: 20px 20px;
    width: auto;
}

/* Add a color to the active/current link */
/* .topnav  {
  background-color: black;
  color: white;
}  */

