#loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100svw;
  height: 100svh;
  display: flex;
  justify-content: center;
  background-color: #fff;
  overflow: hidden;
  transition: left 0.5s ease-in-out;
  z-index: 3000;
}

#loading-bar {
  width: 100%;
  height: 3px;
  background-color: #666;
}

#loading-bar-fill {
  width: 50%;
  height: 100%;
  background-color: #b00;
}

#loading #loading-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#loading #loading-title #loading-subtitle {
  text-align: center;
  color: var(--osuRed);
}

#loading #loading-footer {
  position: absolute;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100svw;
  height: 10dvh;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

#loading #loading-footer img {
  height: 13svw;
  margin: 3svh 2svw;
}

#loading #loading-title #loading-subtitle {
  padding-top: 3svh;
  font-size: 3svh;
}

@media screen and (min-aspect-ratio: 1/1) {
  #loading #loading-title #loading-subtitle {
    font-size: 3svw;
  }

  #loading #loading-footer img {
    height: 13svh;
    margin: 3svh 2svw;
  }
}
