* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  background-color: #DBB973;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
}

.splash-screen {
  animation: fadeIn 1.5s ease-in-out;
}

.logo {
  width: 512px;
  height: 512px;
  padding: 16px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
