/* HTML: <div class="loader"></div> */
body{
  background-color: black;
}
.Navigator{
  background-color: #2fc818;
  padding-top: 1px;
  padding-bottom: 1px;
  display: block;
  list-style-type: none;
}
.Navigator div{
  display: inline flex ;
  list-style-type: none;
}
.Logo{
  margin-left: 25px;
  margin-top: 25px;
  border-radius: 30%;
  width: 40px;
  height: 40px;
}
.Headtitle{
  margin-left: 25px;
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 30px;
  color: rgb(7, 5, 5);
}
.loader {
  margin-top: 350px;
  margin-left: 725px;
  width: 90px;
  height: 14px;
  box-shadow: 0 3px 0 #010101;
  position: relative;
  clip-path: inset(-40px 0 -5px)
}
.loader:before {
  content: "";
  position: absolute;
  inset: auto calc(50% - 17px) 0;
  height: 50px;
  --g:no-repeat linear-gradient(#2fe41f 0 0);
  background: var(--g),var(--g),var(--g),var(--g);
  background-size: 16px 14px;
  animation:
    l7-1 2s infinite linear,
    l7-2 2s infinite linear;
}

.containerchannel form{
  margin-top: 15px;
  text-align: center;
  margin: 50px auto;        
  padding: 30px;            
  color: white;
  background-color: #000;   
  border: 2px solid #2fe41f;
  border-radius: 15px;  
  max-height: 650px; 
  max-width: 500px;         
  display: flex;
  flex-direction: column; 
  gap: 50px;  
  box-shadow: 0 0 15px rgba(47, 228, 31, 0.3); 
}
.containerchannel input{
  font-size: 25px;
  border: #2fe41f 2px solid;
  border-radius: 2%;
}
.containerchannel button{
  font-size: 24px;
  color: #2fc818;
  background-color: #010101;
  border: #2fe41f 2px solid;
  border-radius: 8%;
}
.results {
    text-align: center;
    margin: 50px auto;        /* 'auto' centers the box horizontally */
    padding: 30px;            /* Adds space inside so text doesn't hit the border */
    color: white;
    background-color: #000;   
    border: 2px solid #2fe41f;
    border-radius: 15px;   
    max-width: 500px;         
    box-shadow: 0 0 15px rgba(47, 228, 31, 0.3); 
}

/* Optional: Style the text inside for better hierarchy */
.results h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2fe41f;           /* Makes the title green too */
}

.results p {
    font-size: 1.1rem;
    margin: 10px 0;
}
@keyframes l7-1 {
  0%,
  100%  {background-position: 0 -50px,100% -50px}
  17.5% {background-position: 0 100%,100% -50px,0 -50px,100% -50px}
  35%   {background-position: 0 100%,100% 100% ,0 -50px,100% -50px}
  52.5% {background-position: 0 100%,100% 100% ,0 calc(100% - 16px),100% -50px}
  70%,
  98%  {background-position: 0 100%,100% 100% ,0 calc(100% - 16px),100% calc(100% - 16px)}
}
@keyframes l7-2 {
  0%,70% {transform:translate(0)}  
  100%  {transform:translate(200%)}
}