body {
  background-color: #fff;
  font-family: montserrat;
  position: fixed;
  inset: 0px;
  overflow: hidden;
  padding: 0px;
  margin: 0px;
  user-select: none;
  touch-action: none;
  font: 14px montserrat; 
}

p {
  font-family: montserrat;
  color: #fff;
  padding: 10px;
  font-size: 24px;
  text-align: center;
  background-color: #F4CF70;
}
.contentStyle{
  margin-top: 50px;
}

.vertical-center {
  margin: 0;
  position: absolute;
  align-items: center;
  top: 50%;
  width: 100%;
  -ms-transform: translateY(-50%);
  justify-content: center;
  transform: translateY(-50%);
}

.loader {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  position: relative;
  margin: 0 auto;
}

#loader-4 span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #201E52;
  margin: 5px 5px;
  opacity: 0;
}

#loader-4 span:nth-child(1) {
  animation: opacitychange 1s ease-in-out infinite;
}

#loader-4 span:nth-child(2) {
  animation: opacitychange 1s ease-in-out 0.33s infinite;
}

#loader-4 span:nth-child(3) {
  animation: opacitychange 1s ease-in-out 0.66s infinite;
}

@keyframes opacitychange {

  0%,
  100% {
    opacity: 0;
  }

  60% {
    opacity: 1;
  }
}