html {
  filter: hue-rotate(180deg);
}

@keyframes hue-spin {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.rgb-loop-active {
    animation: hue-spin 5s linear infinite;
}

body {
  margin: 0;
  background: #e5e5e5;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  font-family: 'Bebas Neue', sans-serif;
}

.abstract-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/img/wp.jpg") ;
  background-position: right bottom;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: -1;
}


.menu {
position: absolute;
  right: 6.25%;
  top: 52.02%;
  width: 24.2%;
  height: 23%;
  /* Remove the height property to let aspect-ratio calculate it */
  /* height: 24.9%; */ 
  
  /* ADD THIS: Set your desired width/height ratio */
  aspect-ratio: 1 / 1; 

  background: rgba(126, 61, 0, 0.13);
  /* Use relative units for padding */
  padding: 1.5vw; 
  backdrop-filter: blur(4px);
  color: #e5e5e5;
}

.menu h2 {
  font-size: 14px;
  margin: 0 0 10px;
  font-weight: bold;
  letter-spacing: 1px;
}

.item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000000;
  padding: 10px 0;
  font-size: 18px;
  font-weight: bold;
}

.item span.num {
  color: #c22;
}

h2, a {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700; /* For a bold appearance */
  letter-spacing: 2px; /* Optional: to replicate the image's spacing */
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

/* Cursor Style */
.cursor {
    font-weight: bold;
    animation: blink-animation 1s steps(2, start) infinite;
    color: #ffffff;
    margin-left: 2px;
    /* Using a vertical bar for the cursor */
}

footer {
  position: absolute;
  bottom: 40px;
  right: 60px;
  font-size: 10px;
  color: #ff4b15;
  font-size: 12px;
}

.link{
  display: block; 
  padding: 2px;
  padding-left: 5px;
  padding-right: 5px;
  
}

.link:hover { 
  background-color: #e5e5e55b; 
}

a:active {
  color: #ff4b15; 
  text-decoration: none;
}

a:visited {
  color: #ffffff;
  text-decoration: none;
}

a:link {
  color: #ffffff;
  text-decoration: none;
}