body {
  inset: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: fixed;
}

@media (prefers-color-scheme: light) {
    body {
        background-color: white;
        color: black;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #211E22;
        color: white;
    }
}

#loading {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

#loading img {
	width: 128px;
	height: auto;
}

#container-svg{
	width: 48px;
	height: 48px;
	position: relative;
	margin-top: 32px;
}

#container-svg svg{
	 position: absolute;
	 top: 0;
	 left: 0;
	 right: 0;
	 opacity: 0;
}

.fade-in {
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  0%, 100% {
    opacity: 0;
  }
  10%, 90% {
    opacity: 1;
  }
}