.footer {
    position: relative;
    background-color: #1B1F22;
    color: white;
    padding: 60px 20px;
    overflow: hidden;
    text-align: center;
  }
  
  .footer-background-text {
    font-family: 'Krisha', 'sans-serif';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12rem;
    color: rgba(128, 128, 128, 0.10);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
  }
  
  .footer-links {
    position: relative;
    display: flex;
    justify-content: end;
    gap: 40px;
    z-index: 1;
    padding-right: 5rem;
  }
  
  .footer-link {
    font-size: 1rem;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer-link:hover {
    color: #FFDE7C;
  }
  