/* Loader */ section { display: flex; justify-content: center; align-items: center; min-width: 100vw; min-height: 100vh; background: #042104; } .overlay { z-index: 9999999; position: fixed; top: 0; bottom: 0; left: 0; right: 0; } section .loader{ position: relative; width: 120px; height: 120px; } section .loader span { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } section .loader span::before { content: ""; position: absolute; top: 0; left: 0; width: 15px; height: 15px; background: #00ff0a; box-shadow: 0 0 10px #00ff0a, 0 0 20px #00ff0a, 0 0 40px #00ff0a, 0 0 60px #00ff0a, 0 0 80px #00ff0a, 0 0 100px #00ff0a; } /* akhir Loader */