@import '../../scss/mixin';

.container {
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title {
  align-self: stretch;
  font-family: var(--llm-font-primary);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--neutral-800);
}

.loading {
  flex-shrink: 0;
  position: relative;
  margin-top: 0.12vh;
  width: 100px;
  height: 100px;

  span {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--neutral-300);

    &:nth-child(1) {
      width: calc(50% - 2px);
      height: 100%;
    }

    &:nth-child(2) {
      left: calc(50% + 2px);
      width: calc(50% - 2px);
      height: calc(70% - 2px);
    }

    &:nth-child(3) {
      left: calc(50% + 2px);
      width: calc(50% - 2px);
      height: calc(30% - 2px);
    }
  }
}
