.loading-screen{position:fixed;display:flex;width:100vw;height:100vh;flex-direction:column;align-items:center;justify-content:center;background-color:rgba(0,0,0,.8);color:#fff;z-index:1000;overflow:hidden}.loading-screen svg{margin-top:34px;margin-bottom:35px;width:105px;height:105px}.bouncing-balls{display:flex;gap:20px;justify-content:center}.ball{width:16px;height:16px;background-color:#fff;border-radius:50%;animation:bounce 1.5s ease-in-out infinite}.ball:first-child{animation-delay:0s}.ball:nth-child(2){animation-delay:.2s}.ball:nth-child(3){animation-delay:.4s}@keyframes bounce{0%,80%,to{transform:translateY(0)}40%{transform:translateY(-20px)}}