.body{
  background-color: black;
  height:100vh;
  width:100%;
  background-image: url("../img/background.webp");
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.splahScreen{
  position: absolute;
  z-index: 999;
  background-color: black;
  height:100vh;
  width: 100%;
  color:rgb(191, 191, 191);
  text-align: center;
  line-height: 90vh;
  overflow: hidden;
}

.splahScreen-none{
  position: absolute;
  opacity: 0;
  z-index: -999;
  background-color: black;
  height:100vh;
  width: 100%;
  color:rgb(191, 191, 191);
  text-align: center;
  line-height: 90vh;
  transition: all 0.5s;
  overflow: hidden;
}

@keyframes fadeIn {
  to{
    opacity: 1;
  }
}

.fade-in{
  opacity: 0;
  animation: fadeIn .5s ease-in forwards;
}


@keyframes spin {
  from {
    transform: rotate(0);
  }
  to{
    transform: rotate(359deg);
  }
}

.spinner-box {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.three-quarter-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid #ffffff;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin .5s linear 0s infinite;
}

.loaded{
  display: none;
}

.loading{
  height: 75vh !important;
}