@keyframes box {
	0% {
        transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.preloader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    z-index: 1000000;
    background: linear-gradient(to bottom right, #0a172d, #121416);
}
.preloader__wrapper{
    height: 200px;
    width: 200px;
    position: relative;
    /* background-color: aquamarine; */
}
.preloader__img{
    position: absolute;

    display: block;
    height: 100%;
    width: auto;
    padding: 70px;
}
.preloader__body {
    position: absolute;
    /* top: 50vh; */
    /* left: 50vw; */

    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: dotted 9px rgb(255, 255, 255);

    animation-name: box;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
