#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1.5s ease-out;
}

.logo-container {
  width: 80%;
  max-width: 500px;
}

#logo-video {
  width: 100%;
  height: auto;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

#app {
  opacity: 0;
  transition: opacity 1.5s ease-in;
}