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

body {
  background-color: #111;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.container {
  animation: fadeZoom 2s ease forwards;
}

.logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: scale(0.95);
}

/* Animacija za ulaz */
@keyframes fadeZoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
