#home {
  display: flex;
  flex-direction: column;
}

/** main */
.section {
  width: 100%;
  height: 100%;
  position: relative;
}

.image-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#loading-image {
  height: 75px;
  width: auto;
  user-select: none;
}

.text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 10rem;
  width: 80%;
  text-align: center;
}

#loading-text {
  width: 100%;
}

@media screen and (max-width: 600px) {
  #loading-image {
    height: 50px;
  }
}

/** footer */
.footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.875rem 0.875rem 0.875rem;
}

.footer .container {
  max-width: 40%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.625rem;
}

@media screen and (max-width: 600px) {
  .footer .container {
    max-width: 75%;
  }
}

.footer a {
  text-decoration: underline;
  text-decoration-color: rgb(170, 170, 170);
}

.footer .content {
  color: rgb(170, 170, 170);
  font-weight: 400;
}

@media screen and (max-width: 600px) {
  .text-container .content {
    font-size: 1rem;
  }

  .footer .content {
    font-size: 0.75rem;
  }
}