#loading-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  margin-bottom: 0px;
}
@media (min-width: 640px) {
  .index-container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .index-container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .index-container {
    max-width: 1024px;
  }
}
.index-navbar {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid hsl(209 23% 60%);
}
.index-navbar-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-right: 1rem;
  height: 20px;
  position: absolute;
  right: 0px;
  top: 40px;
}
@media (min-width: 768px) {
  .index-navbar-right {
    margin-right: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .index-navbar-right {
    margin-right: 0.5rem;
  }
}
.index-navbar-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 1rem;
}
@media (min-width: 768px) {
  .index-navbar-left {
    margin-left: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .index-navbar-left {
    margin-left: 0.5rem;
  }
}
.index-navbar-right-text {
  color: #5a5a5a;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-family:
    "Source Sans Pro",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-weight: 300;
  color: hsl(209 23% 60%);
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-top: 0px;
  margin-bottom: 0px;
}
.index-tagline-section {
  position: fixed;
  left: 0;
  right: 0;
  top: 92px;
}
.index-tagline-headline-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.index-tagline-headline-text {
  font-size: 2.25rem;
  font-weight: 300;
  font-family: "Pacifico", serif;
  color: hsl(205 76% 39%);
  line-height: 1.25;
  font-style: normal;
}
@media (min-width: 768px) {
  .index-tagline-headline-text {
    font-size: 3rem;
  }
}
.index-tagline-action-emojis-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}
.index-loading-indicator-wrapper {
  position: relative;
  top: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  height: 100px;
}
.index-lds-spinner {
  display: flex;
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 3;
}
.index-lds-spinner div {
  transform-origin: 20px 20px;
  animation: index-lds-spinner 1.2s linear infinite;
}
.index-lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 1.5px;
  left: 18.5px;
  width: 3px;
  height: 9px;
  border-radius: 20%;
  background: #000;
}
.index-lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.index-lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.index-lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.index-lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.index-lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.index-lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.index-lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.index-lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.index-lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.index-lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.index-lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.index-lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes index-lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
