.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-top: 20px;
    filter: drop-shadow(0 0 0.95rem crimson);
    backdrop-filter: blur(8px);
  }

  .auth {
    cursor: auto;
    border: solid 4px red;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.645);
    backdrop-filter: blur(2px);
    padding: 20px;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .quil-img {
    margin-right: 2px; width: 150px;
  }

  .auth-note {
    display: flex; justify-content: center; align-items: center; width: 100%; height: 100%; margin-top: 20px;
    filter: drop-shadow(0 0 0.95rem rgba(220, 20, 20, 0.53));
  }

  .auth-note2 {
    background-color: rgba(0, 0, 0, 0.533); padding: 40px; text-align: center; font-size: 25px; width: 78%; border-radius: 20px; font-weight: bolder;
  }

  @media screen and (max-width: 768px) {
    .quil-img {
        display: none;
    }
  }

  about {
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
  }

  @keyframes floatBubble{
    from{
          top:0;
          -webkit-animation-timing-function: ease-in;
      }
      to {
        top: 12px;
        -webkit-animation-timing-function: ease-out;
      }
  }

  @-webkit-keyframes floatBubble{
    from{
          top:0;
          -webkit-animation-timing-function: ease-in;
      }
      to {
        top: 12px;
        -webkit-animation-timing-function: ease-out;
      }
  }

  /* .about-txte:hover {
    cursor: pointer;
  } */

  .about-eimg {
    filter: drop-shadow(0 0 100px crimson);
    filter: contrast(4);
    background-image: url(/cdn/background.png); width:100%; height:400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: solid rgb(238, 0, 255) 4px;
    border-radius: 20px;
    overflow-x: hidden;
  }

  .about-txte {
    position: relative;
    animation: floatBubble 0.7s infinite;
    -webkit-animation: floatBubble 0.7s infinite;
    animation-direction: alternate;
    font-size: 40px;
    font-weight: bolder;
    text-align: center;
    color: rgba(255, 0, 0, 0.556);
    border-radius: 20px;
    padding: 20px;
    text-shadow: 0 0 2px red;
    z-index: 1; /* Ensure the text stays on top */
  }

  .about-txte::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.501);
    border-radius: 20px;
    filter: blur(8px);
    z-index: -1;
  }

  .quil-img {
    animation: spin-onload 1.5s;
  }
  
  .quil-img:hover {
    animation: spin-hover 1.5s infinite;
  }
  
  @keyframes spin-onload {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  @keyframes spin-hover {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

  .gal-auth {
    user-select: auto;
    cursor: auto;
    border: solid 4px red;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.645);
    backdrop-filter: blur(2px);
    padding: 20px;
    width: 80%;
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-behavior: smooth;
  }

  .gal-auth::-webkit-scrollbar {
    display: none;
  }
  
  .gall-i {
    width: 250px;
    min-height: 250px;
    opacity: 0;
    animation: fadeIn 1s forwards;
    margin: 20px;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes scrolls {
    from {
      left: -350px;
    }
    to {
      left: 120%;
      opacity: 1;
    }
  }
  
  
  
