/* Reset i stil */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Anton', sans-serif;
  color: white;
  background: url('img/gta6-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  position: relative;
}

/* Tamni overlay za bolji kontrast */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Centralni tekst */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.content h1 {
  font-size: 6rem;
  letter-spacing: 5px;
  animation: pulse 2s infinite;
}

.content p {
  font-size: 1.5rem;
  margin-top: 20px;
  color: #f0f0f0;
  opacity: 0.9;
}

/* Animacija */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}
