li {
    font-size: 18px;
    font-family: Arial, sans-serif;
}

p {
   font-size: 18px;
   font-family: Arial, sans-serif;
}

h1 {
    font-family: Arial, sans-serif;
}

h2 {
    font-family: Arial, sans-serif;
}

h3 {
    font-family: Arial, sans-serif;
}

th {
    font-family: Arial, sans-serif;
}

tr {
    font-family: Arial, sans-serif;
}

.styled-line {
  border: none;              /* remove default border */
  height: 2px;               /* thickness */
  background-color: #000000; /* black line */
  margin: 20px 0;            /* space above and below */
}

nav ul {
  list-style: none;
  background-color: Gold;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column; /* stack items vertically */
  gap: 1rem;             /* space between items */
}


nav li {
  padding: 0.5rem 0;
}

nav a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  display: block;       /* makes the whole line clickable */
}
nav a:hover {
  background: black;  /* highlight on hover */
  color: white;
  border-radius: 6px;
  padding-left: 0.5rem;
}