style> .skip-loading{ width: 100%; height: 100vh; position: fixed; top: 0; left: 0; background: #fff; z-index: 9999; display: flex; align-items: center; justify-content: center;} .svg-loader svg { width: 43px;animation: rotateAnimation 4s linear infinite;} #header,#container,#footer{ visibility: hidden; } @keyframes rotateAnimation { 0% { transform: rotate(0deg); }100% { transform: rotate(360deg); } }