body
{
    text-align: center;
}


.loader-container
{
    width: 100%;
    height: 100vh;
    background-color: #000;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader
{
    width: 50px;
    height: 50px;
    border: 5px solid;
    color: #FFF;
    border-radius: 50%;
    border-top-color: transparent;
    animation: loader 0.5s linear infinite;
}

@keyframes loader
{
	25%
	{
		color: #FFF;
	}
    50%
	{
		color: #FFF;
    }
    75%
	{
		color: #FFF;
    }
    to
	{
		transform: rotate(360deg);
    }
}