*{
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
}

.loader-container{
  width: 100%;
  height: 100vh;
  /* background-color: #000000; */
  background-image:url('background.jpg');
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
  background-size: cover;
  background-repeat: no-repeat;
}
.loader-container > h2{
	margin-bottom: 10px;
	color: #ffe000;
}
@media only screen and (max-width:440px){
  .loader-container{
      max-width: 100%;
  }  
}
@media only screen and (max-width: 1024px){
  .loader-container{
      max-width: 100%;
  } 
}

.loader-container >img{
  width: auto;
  height: 250px;
  border-radius: 20px;
  margin-bottom: 40px;
}
.loader{
  width: 70px;
  height: 70px;
  border: 10px solid;
  color: #3498db;
  border-radius: 50%;
  border-top-color: transparent;
  animation: loader .9s linear infinite;
  margin-bottom: 50px;
}

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