
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #fccd76, #faae57, #fceec2, #fcc662, #fade55);
    background-size: 400% 400%;
    animation: gradientMove 8s ease infinite;
}

.img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 50%;
    margin: 0 auto;
    min-height: 100vh;
}

.img img {
    width: 100%;        
    height: auto;      
    object-fit: contain;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.text {
  position: absolute;
  bottom:6%;
  width:100%;
  text-align:center;
  color:#5b3263 !important;
  font-family:'Tahoma', sans-serif;
}

.loader.hidden {
  display: none;
}

@keyframes gradientMove {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}