body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #ffffff;
	background-image: url(tartan.gif);
	background-color: #26802D;
  }
  
  #header {
    border-bottom: 2px solid #ccc;
    padding: 1rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-image: url(tartan.gif);
	background-color: #26802D;
  }
  
  #header h1 {
    margin: 0;
}

  
  nav {
    margin-top: 1rem;
}

  a {
    color: #f0e54c; /* normal link */
    text-decoration: none;
}

  a:hover {
    color: #003366; /* when hovered */
}

  a:visited {
    color: #660066; /* after visited */
}

  a:active {
    color: red; /* when clicked */
}
  
  .menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
  }
  
  .menu li {
    position: relative;
  }
  
  .menu a {
    text-decoration: none;
    padding: 0.5em 1em;
    display: block;
    color: #333;
    background-color: #e2e6ea;
    border-radius: 5px;
  }
  
  .menu a:hover {
    background-color: #ced4da;
  }
  
  .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    border: 1px solid #ccc;
    z-index: 999;
  }
  
  .menu li:hover > .submenu {
    display: block;
  }
  
  .submenu li {
    width: max-content;
  }
  
  .submenu .submenu {
    left: 100%;
    top: 0;
  }
  