{{#css:

  1. loading-screen {
 position: fixed;
 top:0;
 left:0;
 width:100%;
 height:100%;
 background:#003973;
 display:flex;
 align-items:center;
 justify-content:center;
 animation:fadeOut 3s ease-in-out forwards;
 z-index:9999;

}

@keyframes fadeOut {

 0% { opacity: 1; }
 80% { opacity: 1; }
 100% { opacity: 0; visibility: hidden; }

} </style> }}