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

.loader-container{
  width: 100%;
  height: 100vh;
  background-color: #000000;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
}
@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: 50px;
  height: 50px;
  border: 5px solid;
  color: #3498db;
  border-radius: 50%;
  border-top-color: transparent;
  animation: loader .9s linear infinite;
}

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