.star-vision {
    position: absolute;
    width: 100%;
    height: 90%;
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1;
}
.vision {
  font-size: 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  background: linear-gradient(
      270deg,
      #00ffff,   
      #00fa9a, 
      #00ff7f, 
      #39ff14,  
      #ffd700, 
      #ffa500,   
      #ff69b4,   
      #ff00ff, 
      #8a2be2,  
      #7b68ee,  
      #1e90ff,   
      #00bfff,  
      #00ffff    
    );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 10s linear infinite; 
}
.btn {
    padding: 1rem 5rem;
    border-color: #818182;
    border-radius: 2rem;
    font-size: 1.25rem;
}
.footer-content {
    display: flex;
    align-items: center; 
    justify-content: center;
    gap: 100px
}
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: auto;
    background-color: transparent; 
    padding: 10px 0; 
    font-size: 12px; 
    color: #f5f5f5;
}
footer ul {
    display: flex;
    justify-content: center;
    padding: 0;
    margin-bottom: 0px;
    gap: 25px; 
}
footer li {
    display: inline;
}
footer a {
    color: #f5f5f5;
}
footer a:hover {
    color: #f5f5f5;
}

@keyframes gradientMove {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@media (max-width: 767px) {
    .vision {
        font-size: 15px;
    }
    .btn {
        padding: 1rem 3rem;
    }
    .footer-content {
        flex-direction: column;
        gap: 2px;
    }
}