 *{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;

}

html,body{
    height: 100%;
    overflow-x: hidden;
    width: 100%;
    overscroll-behavior: none;
} 
/* Custom Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.4) transparent;
}

#loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: #FFD900;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    overflow: hidden;
  }

  .floating-image {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.8;
  }

  #logo {
    width: 400px;
    opacity: 0;
    transform: scale(1.4);
  }

  #text {
    display: flex;
    gap: 10px;
    font-size: 2.5rem;
    margin-top: 20px;
    font-weight: bold;
    
  }

  .letter {
    opacity: 0;
  }

  .white {
    color: white;
  }

  .pink {
    color: #ff449c;
  }

  #main-content {
    visibility: none;
    opacity: 1;
    
    background-color: #fff6c0;
    min-height: 100vh;
    text-align: center;
    transition: opacity 0.5s ease;
  }
