.preloader {
position: fixed;
left:0;
top:0;
width:100%;
height:100%;
background: black;
z-index:99;
.loader {
width:75px;
height:75px;
border:10px solid white;
border-radius: 50%;
border-top-color: blue;
position: absolute;
left:50%;
top:50%;
transform: translate(-50%, -50%);
animation: 2s spin infinite linear;
}
}