
html, body {
  height: 100%;
}
body {
  margin: 0;
  /* background-color: #ddd; */
  padding: 0;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
}

main{
  height: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloaderBg{
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: #ffffff;
  /* background-color: #1c212cff; */
  z-index: 1000;
  backdrop-filter: blur(20px);
}

#preloader{
  position: fixed;
  width: 300px;
  left: calc(50% - 150px);
  top: calc(50% - 60px);
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 9px;
  align-items: center;
}

#preloaderTitle{
  font-size: 17px;
    line-height: 40px;
    letter-spacing: 1.3em;
    width: 100%;
    text-align: center;
    left: 10px;
    position: relative;
}

.visible {
  visibility: visible;
  opacity: 1;
  transition: opacity 2s linear;
}

.hiddenPreloaderBg {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 4s, opacity 2s 2s linear;
}

.hiddenPreloaderText {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 2s, opacity 2s linear;
}