	.button-28 {
  appearance: none;
  background-color: white;
  border: 2px solid #8697ff;
  border-radius: 15px;
  box-sizing: border-box;
  color: #6d7ddc;
  cursor: pointer;
  display: inline-block;
  font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  min-height: 60px;
  min-width: 0;
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 50%;
  will-change: transform;
}

@media (min-width: 600px) {
  .button-28  {
    width: 15%; /* override width on smaller screens */
  }
}
.button-28:disabled {
  pointer-events: none;
}

.button-28:hover {
  color: #8697ff;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.button-28:active {
  box-shadow: none;
  transform: translateY(0);
}
	body {
	margin: 0;
	padding: 0;
}

.splash-container {
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #8697ff;
}

.logo-container {
	margin-bottom: 20px;
	text-align: center;
}

.logo-container img {
	max-width: 100%;
	height: auto;
}

.loading-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.loading-spinner {
	border: 5px solid #ccc;
	border-top-color: #fff;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
	margin-bottom: 10px;
}

.loading-text {
	font-size: 24px;
	font-weight: bold;
	font-family: monospace;
	color: white;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
