.top{
  background-image: linear-gradient(#006ec3, #b1ddff) ;
  width: 100%;
  height: 100px;
  text-align: center;
    color: #1b60b9;
}

.mid{
  background-color: #ceeaff;
  width: 100%;
  height: 40px;
  text-align: center;
  color: #6476a7;
}

.top h3 {
    padding: 0;
    margin: 0;
}

.mid h3 {
    padding: 0;
    margin: 0;
}

.highlighter {
  background: linear-gradient(180deg, transparent 30%, #fff176 50%);
  padding: 0 4px; 
  font-weight: bold; 
}

.highlighter2 {
  background: linear-gradient(180deg, transparent 30%, #a8dcff 50%);
  padding: 0 4px; 
  font-weight: bold;
}

.highlighter3 {
  background: linear-gradient(180deg, transparent 30%, #ffc7fc 50%);
  padding: 0 4px; 
  font-weight: bold; 
}

.highlighter4 {
  background: linear-gradient(180deg, transparent 30%, #9affa7 50%);
  padding: 0 4px;
  font-weight: bold;/
}

.highlighter5 {
  background: linear-gradient(180deg, transparent 30%, #cceaff 50%);
  padding: 0 4px;
  font-weight: bold;
}




.nav-list {
  list-style-type: none;
  padding: 10px;
  width: 150px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 2px;
  margin-bottom: 2px;
}

.nav-list li {
  padding: 12px;
  text-align: center;
  border-radius: 10px;
  font-weight: bold;
  color: #6476a7;
  cursor: pointer;
  letter-spacing: 1px;
}

.itembutton    { background-color: #e3f3ff; }

.nav-list li:hover {
  filter: brightness(1.05);
  transform: scale(1.02);
  transition: 0.2s;
}

.header{
  background-image: linear-gradient(#006ec3, #b1ddff) ;
   border: #ffffff 2px solid;
   border-radius: 20px;
  width: 710px;
  height: 80px;
  text-align: center;
   color: #ffffff;
  position: relative;
  left: 1em;
}

.webrings{
  background-color: #e3f3ff;
  width: 98%;
  height: 340px;
  text-align: center;
    color: #6476a7;
  overflow: scroll;
   overflow-x: hidden;
  margin-left: 1px;
}

::-webkit-scrollbar {
  width: 10px;
  background: #ffffff;
}
::-webkit-scrollbar-thumb {
  background: #add6dd;
  border-radius: 0px;
}
::-webkit-scrollbar-track {
  background: #ededed;
  border-radius: 0px;
}




.slider {
  overflow: hidden;
  width: 750px; 
  padding: 0;
  margin: 0;
}

.slide-track {
  display: flex;
  width: max-content; 
  animation: bounce 2s linear infinite alternate;
}

.slide {
  width: auto; 
  flex-shrink: 0;
}

.slide img {
  display: block;
}

@keyframes bounce {
  0% { 
    transform: translateX(0); 
  }
  100% { 
    transform: translateX(calc(-100% + 750px)); 
  }
}


.slider:hover .slide-track {
  animation-play-state: paused;
  cursor: pointer;
}