body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #ffffff;
  font-family: sans-serif;
}

#loading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  height: 100vh;
  background-color: #ffffff;
  transition: opacity 1s ease;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

#loading.fade-out {
  opacity: 0;
  /*pointer-events: none;*/
  transition: opacity 0.8s ease;
}

.logo {
  width: 150px;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.typing-text {
  font-size: 26px;
  color: #333;
  margin-top: 20px;
  	font-family: "Squada One", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #333;
  width: 0;
  font-weight: 600;
  /*animation: typing 3s steps(40, end) forwards, blink 0.7s step-end infinite;*/
  animation: typing 1.6s steps(30, end) forwards, blink 0.7s step-end infinite;

}

@keyframes typing {
  from { width: 0 }
  to { width: 350px }
}

@keyframes blink {
  from, to { border-color: transparent }
  50% { border-color: #333 }
}

@media (max-width: 768px) {
	.typing-text {
	  font-size: 21px;
	  color: #333;
	  margin-top: 20px;
	  font-family: "Squada One", sans-serif;
	  white-space: nowrap;
	  overflow: hidden;
	  border-right: 2px solid #333;
	  width: 0;
	  font-weight: 600;
	  /*animation: typing 3s steps(40, end) forwards, blink 0.7s step-end infinite;*/
      animation: typing 2.8s steps(40, end) forwards, blink 0.7s step-end infinite;
	}
	@keyframes typing {
	  from { width: 0 }
	  to { width: 280px }
	}

	@keyframes blink {
	  from, to { border-color: transparent }
	  50% { border-color: #333 }
	}
}
