.loader, .connection { display: flex; justify-content: center; align-items: center; height: 100%; flex-direction: column; @keyframes rotating { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } svg { font-size: 600%; color: #ccc; } p { padding-top: 1em; color: #ccc; font-weight: 600; } } .loader { svg { animation: rotating 1s linear infinite; } }