* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background-color: #f6f7f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 160px;
  max-width: 60vw;
  opacity: 0;
  animation: fadeIn 2.4s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}




