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

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

.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;
}

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

.loader.hidden {
  display: none;
}

.split-text-container {
    position: absolute;
   bottom:6%;
    width:100%;
   text-align:center;
   color:hsl(281, 20%, 22%) !important;
   font-family:'Tahoma', sans-serif;
    display: flex;
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    overflow: hidden;
}

.text-part {
    display: inline-block;
    position: relative;
    transform: translateX(0);
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.text-part.left {
    transform: translateX(-200%);
    animation-name: slide-in-left;
}

.text-part.right {
    transform: translateX(200%);
    animation-name: slide-in-right;
}

@keyframes slide-in-left {
    0% {
        transform: translateX(-200%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    0% {
        transform: translateX(200%);
    }
    100% {
        transform: translateX(0);
    }
}