@charset "UTF-8";
/* Change color on hover */
nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1000; /* Ensure the nav is on top */
}

.sticky {
  position: fixed;
  top: 0;
  z-index: 6;
  width: 100%;
}

.sticky + .content {
  padding-top: 60px;
}
.sticky2 {
  position: fixed;
  top: 60px;
  width: 100%;
  z-index: 6;
}

.sticky2 + .content {
  padding-top: 60px;
  z-index: 6;
}
.topnav {
  background-color: #333;
  overflow: hidden;
  height:60px;
}
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a {
	height:60px;
  float: left;
    background-color:gray;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}


.topnav a.active {
  background-color: #fafafa;
  color: white;
}
.topnav:after {
  content: "";
  display: table;
  clear: both;
}
/*Project Navigation
*********************************
*/
.vertical-menu {
	 background-color: #eee;
  width: 100%;
  height: 220px;
   overflow: auto;
  white-space: nowrap;
 /*  overflow-y: auto; */
}

.vertical-menu a {
 text-align: center;
align-items: center;
  background-color: #eee;
  color: black;
  display: inline-block;
  padding: 12px;
  height:200px;
  width:400px;
  text-decoration: none;
}
.vertical-menu a:hover {
  background-color: #ccc;
}

.vertical-menu a.active {
  background-color: #ffffff;
   font-weight: 900;
  color: rgb(9, 40, 219);
}
.vertical-menu p:hover {
  background-color: #ccc;
}

.vertical-menu p.active {
  background-color: #f8f8f8;
  color: white;
}
/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}


