body {
  background-image: url('imgs/color2.png');
  background-size: cover;
  font-family: Monaco, monospace;
  color: #f7cf08;
  margin: 0;
  padding: 20px;
  cursor: auto;
}

ul {
  list-style-type: none;
  padding: 0; 
  margin: 0; 
}

h1, p {
  text-align: center;
}

    h2 {
      letter-spacing: 5px;
      text-align: center;
    }


p {
  font-size: 1.75em;
}


a {
  color: #f7cf08;     
   font-weight: bold;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
    display: block;
    margin: 0 auto;
}

.box {
    border: 4px solid #5e5887;
    border-style: outset;
    padding: 15px;
    width: 300px;
    height: 500px;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.3);
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 30px;
}

 li {
    margin: 8px 0;
}


/* Sparkle effect styling */
.sparkle {
  position: fixed;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #f7cf08 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 1;
  animation: sparkle-fade 0.6s forwards;
  z-index: 9999;
}

@keyframes sparkle-fade {
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

/* marquee */

    .marquee {
      font-size: 24px;
      color: #f7cf08;
      white-space: nowrap;
      overflow: hidden;
      box-sizing: border-box;
      width: 100%;
      position: relative;
      margin: 20px 0;
      border: 1px solid transparent; /* maintains height */
    }


    .marquee span {
      display: inline-block;
      padding-left: 100%;
      animation: marquee 10s linear infinite;
    }


    @keyframes marquee {
      0% {
        transform: translateX(0%);
      }
      100% {
        transform: translateX(-100%);
      }
    }

/* bottom text*/
  .bottom-text {
      position: fixed;
      bottom: 20px;            
      left: 50%;                
      transform: translateX(-50%); 
      font-size: 10px;
      color: #5e5887;
      background: none;
      padding: 10px 20px;
      border-radius: 8px;
    }
/* drop down menus*/

.dropbtn {
  background-color: #f85c5c;
  color: #f7cf08;
  padding: 16px;
  font-size: 16px;
  border: 2px outset #954054;
  border-radius: 5px;
  
  cursor: pointer;
  
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #595b8b;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  font-size: 18px;
  border: 2px outset #4a4678;
  border-radius: 5px;
}

.dropdown-content a {
  color: #f7cf08;
  padding: 1px 10px;
  
  display: block;
  font-size: 16px;
}

.dropdown-content a:hover {background-color: #36315a}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #aa3e4d;
  border-color:#6e2a38;
}
/*home*/

    .home-button {
    position: fixed;
    bottom: 10px; 
    right: 10px;
    border: 4px solid #5e5887;
    border-style: outset;
    background-color: rgba(0, 0, 0, 0.3);
    }

    .home-button:hover {
      background-color: #2980b9;
    }