header {
    position: fixed;
    background-color: #000;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 4rem;
    background-image: linear-gradient(#1b1b1b, #111111), linear-gradient(120deg, #f09 0%, #0ff 50%, #ec1dff 100%, #ec1dff 100%);
    box-shadow: inset rgb(0, 0, 0) 0px 0px 60px -12px;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-bottom: 0.15em solid transparent;
    transition: top 0.5s ease-in-out; 
    top: 0%;
    z-index: 100;
    background-size: 200% 200%;
    animation: move_gradient 5s linear infinite;
    transition: 0.4s ease;
  }
  
  @keyframes move_gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

header:hover {
    filter: drop-shadow(0 0 20px #5900ff80);
}
  
header nav {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }


header nav a {
    text-decoration: none;
    color: white;
    font-size: 1.6rem;
    font-family: "Oswald", sans-serif;
    font-weight: 200;
    background-color: transparent;
    transition: filter 0.3s ease, color 0.5s ease; /
  }
  
header nav a:hover {
    color:  #ef41ff;
    filter: drop-shadow(0 0 0.3rem #ec1dff);
  }

  .logo {  
    width: 130px;
    padding: 3px;
    filter: drop-shadow(0 0 0 rgba(225, 0, 255, 0.418));
    transition: 0.2s ease-in;
      }
      
.logo:hover {
    filter: drop-shadow(0 0 0.75rem rgba(225, 0, 255, 0.418));
    }
  
.active {
    color:  #0ff;
    filter: drop-shadow(0 0 0.3rem #0ff);
    }



.search-bar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 70px;
    gap: 1em;  
    }  
   
   
input {    
    color: white;
    line-height: 1;
    font-family: 'Abel', sans-serif;
    padding: 0.3em 1em;
    font-size: 1rem;
    border-width:  3px;
    border-style: none;
    border-radius: 50px;
    text-align: left;
    outline: none;
    width: 100%;
    background-image: linear-gradient(#000, #000), linear-gradient(120deg, #f09 0%, #0ff 50%, #ec1dff 100%, #ec1dff 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 1.8em;
    background-size: 200% 100%;
    border: 0.15em solid transparent;
    filter: drop-shadow(0 0 0 #ec1dff);
    transition: background-position 0.8s ease-out, filter 0.5s ease;
  }
  
input:hover {
    filter: drop-shadow(0 0 0.3rem rgba(247, 0, 255, 0.411));
    background-position: 100% 0;
    }
  
input:focus {
    filter: drop-shadow(0 0 0.5rem rgba(0, 255, 255, 0.411));
    background-position: 50% 0; 
    }
  
.fa-solid {
      
    position: relative;
    right: 1.6em;  
    transform: scaleX(-1);
    color: #0ff;
    transition: color 0.5s ease;
  }
  
.icon-focused {
    color: #ec1dff;
    }
  
  
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 5px;
    background-color: black;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    font-size: 1rem;
    filter: drop-shadow(5px -49px 13px #000000);
    z-index: 99;
    gap: 1rem;
    }

footer a {
  text-decoration: none;
  color: white;
}  

footer a:hover {
  text-decoration: underline;
}

.footer_logo_icon {
  display: flex;
  flex-direction: row;
  gap: 3px;
}
  
.footer_logo {
  width: 130px;
  padding: 3px;
}

.footer_icon {
  width: 50px;
}

.footer-text {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;

}

.mention_modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.562);
  overflow: hidden; 
  padding-top: 60px;
}

.mention_modal-content {
  background-color: #000000;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #ffffff;
  width: 90%;
  position: relative;
  max-width: 800px;
  bottom: 110px;
  height: calc(100vh - 120px); 
  overflow-y: auto; 
  font-family: "Oswald", sans-serif;
}

.mention_modal-content li {
  color: white;
  font-weight: 200;
}


.mention_modal-content h2 {
  margin-top: 0;
  text-align: center;
  color: white;
}

.mention_modal-content h3 {
  text-align: left;
  color: white;
}

.mention_modal-content a {
  text-decoration: none;
  color: white;
}
.mention_modal-content a:hover {
  text-decoration: underline;
}
.mention_modal-content p {
  margin: 1em 0;
  text-align: left;
  color: white;
  font-weight: 200;

}

.information {
  font-size: 0.9rem;
}
.mention_close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.mention_close:hover,
.mention_close:focus {
  color: #0ff;
  filter: drop-shadow(0 0 0.2rem #0ff);
  text-decoration: none;
  cursor: pointer;
}
.mention_close:active {
  color: #ec1dff;
  filter: drop-shadow(0 0 0.2rem #ec1dff);
  text-decoration: none;
  cursor: pointer;
}

::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
}
 
::-webkit-scrollbar-thumb {
  background: rgb(0, 0, 0); 
  border: white 1px solid;
}

::-webkit-scrollbar-thumb:hover {
  background: #0ff; 
}

::-webkit-scrollbar-thumb:active {
  background: #ec1dff; 
  border: #ec1dff 1px solid;
}

@media (max-width: 1040px) {
  header nav a {
    font-size: 1.3rem;
  }
   
  .search-bar {
    margin-left: 40px;
}
}