html {
  scroll-behavior: smooth;
}
#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: none;
    background-color: rgba(0, 114, 206, 1);
    color: white;
    border-radius: 15%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

#scrollToTopBtn:hover {
    background-color: #0056b3;
}

#scrollToTopBtn svg {
    fill: currentColor;
}


@keyframes moveUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.sc-iqcoie {
  animation: moveUpDown 2s ease-in-out infinite;
}


        .dXyMre {
            position: relative;
            animation: twitch 5s infinite;
        }

        @keyframes twitch {
            0%, 50%, 100% {
                transform: translateX(0);
            }
            52.5% {
                transform: translateX(20px);
            }
            55% {
                transform: translateX(0);
            }
        }



