body {
  margin: 0;
}

.wrapper {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F7F7F8;
  z-index: 10;
  position: relative;
}

.loaderContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
  animation: pulse 2.6s ease-out infinite;
}

.logo {
  width: 70px;
  height: 70px;
}

.siteName {
  width: 280px;
  height: 100%;
}

@keyframes pulse {

  0% {
    transform: scale3d(.8, .8, .8);
  }

  50% {
    transform: scale3d(1, 1, 1);
  }

  100% {
    transform: scale3d(.8, .8, .8);
  }
}