#loading-screen {
  background-color: black;
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  visibility: visible;
  opacity: 1;
}
#loading-screen p {
  color: var(--accent1);
  margin-top: 25px;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
}
#loading-logo-1 {
  stroke-width: 3px;
  width: 75%;
  justify-content: center;
  max-width: 200px;
}
.hidden {
  visibility: hidden !important;
  opacity: 0 !important;
  transition: visibility 1s, opacity 1s linear;
}
