/* Main Container Styling */
#highScoresList {
  list-style: none;
  padding-left: 0;
  margin-bottom: 4rem;
}

.high-score {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.high-score:hover {
  transform: scale(1.025);
}

/* Header section styling */
header {
  background-size: 100%;
  background-color: #666666;
  /* background-color: #ffffff; */
  padding: 0px;
  height: 80px;
  font-size: 18px;
  border-bottom: 8px solid #56a5eb;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
}


/* Navigation bar related styling */
nav {
  display: flex;
  justify-content: flex-end;
}

nav a {
  color: #56a5eb;
  /* color: #777777; */
  text-decoration: none;
  text-transform: capitalize;
  padding: 10px;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

nav li:not(:last-child) {
  border-right: 1px solid lightgrey;
}

nav li {
  display: inline-block;
  margin-top: 10px;
}


/* Footer section styling */
footer {
  background-color: #666666;
  height: 50px;
  color: #56a5eb;
  /* color: #777777; */
  text-align: center;
  font-size: 1.5rem;
  border-top: 8px solid #56a5eb;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Media Queries */

@media (max-width: 479px) {
  .high-score {
  font-size: 1.8rem;
}
}

@media (max-width: 350px) {
  #highScores {
  margin-top: 40px;
  height: 500px;
}
}