:root {
    color-scheme: light;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: Rubik, Inter, system-ui, sans-serif;
  }
  body {
    font-family: DM Sans, Inter, system-ui, sans-serif;
  }

  .animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
  }
  
  .animation-delay-200 {
    animation-delay: 0.2s;
  }
  
  .animation-delay-400 {
    animation-delay: 0.4s;
  }
  
  .animation-delay-600 {
    animation-delay: 0.6s;
  }
  
  .animation-delay-800 {
    animation-delay: 0.8s;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .popup {
    background: rgb(15, 15, 15);
    color: var(--text-color);
    text-align: center;
    padding: 3rem;
    border-radius: 16px;
    width: 500px;
    max-width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.btn-yes {
    background-color: #00a651;
    color: white;
    border: none;
    width: 80px;
    font-weight: bold;
    border-radius: 4px;
    font-size: 18px;

}

.btn-no {
    background-color: #ff0000;
    color: white;
    border: none;
    width: 80px;
    font-weight: bold;
    border-radius: 4px;
    font-size: 18px;
}
.popup h1{
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}