
body {
    margin: 0;
    padding: 0;
    background-color: #f5f1ea;
}

.img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.text {
  position: absolute;
  bottom:1%;
  width:100%;
  text-align:center;
  color:#b67e9d !important;
  font-family:'Calibri', sans-serif;
}

.loading-text {
	position: absolute;
  bottom:1%;
  width:100%;
  text-align:center;
	background: linear-gradient(90deg, rgb(151, 98, 133), rgb(206, 146, 181), rgb(158, 47, 102)) -100%/ 200%;
	-webkit-background-clip: text;
	        background-clip: text;
	color: transparent;
	font: 'Calibri', sans-serif;
	animation: shimmer 2s linear infinite
}

@keyframes shimmer { to { background-position: 100% } }

.text h1 {
    font-size:2.5rem;
    margin:0;
}

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

.loader.hidden {
  display: none;
}
