.splash-container {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
}

.splash-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 500px;
  height: 200px;
  padding: 16px;
  margin-top: -36px;
}

.splash-logo > svg {
  width: 300px;
}

.splash-text {
  color: white;
  font-size: 18px;
  margin-top: 32px;
  font-family: Source Sans Pro, sans-serif;
  color: #0ea5c6;
}

.splash-logo polyline,
.splash-logo path {
  fill: #0ea5c6;
}

.splash-brand {
  color: white;
  margin: 0;
  font-weight: 700;
  font-size: 96px;
  line-height: 1;
  font-family: Source Sans Pro, sans-serif;
}

.link-button {
  text-decoration: none;
  padding: 8px 80px;
  background-color: #0ea5c6;
  border-radius: 3px;
  text-align: center;
  color: white;
  cursor: pointer;
  font-size: 18px;
  margin-top: 16px;
  font-family: Source Sans Pro, sans-serif;
}

@keyframes fade-in {
  100% {
    opacity: 1;
  }
}

@keyframes slide-up-fade-in {
  0% {
    opacity: 0;
    transform: translateY(100vh);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
