1/* SVG loader made by: csozi | Website: www.csozi.hu*/23/*You dont need this "p" style*/4p{5font-weight: bolder;6font-size: 20px;7color: black;8position: absolute;9translate: 0px -100px;10}1112.loader{13overflow: visible;14height: fit-content;15width: fit-content;16padding: 20px;17display: flex;18}1920.logo{21fill: none;22stroke-dasharray: 20px;23/*<-- Play with this number until it look cool <------------------- */24stroke: black;25/* | */26animation: load 15s infinite linear;27/* | */28}/* | */29/* | */30@keyframes load{31/* | */320%{33/* | */34stroke-dashoffset: 0px;35/* | */36}/* | */37100%{38/* | */39stroke-dashoffset: 200px;40/* <-- This number should always be 10 times the number up there*/41}42}