body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Courier New', monospace;
  overflow: hidden;
  background-color: #000;
}

.background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
  filter: brightness(0.7) contrast(1.2);
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 2;
}

.center-text {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.center-text h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  color: #aaa;
  text-transform: lowercase;
}

.highlight {
  color: #0f0; /* zelena kao "haker" stil */
  font-weight: bold;
}

.normal {
  color: #aaa;
}

.footer {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
  z-index: 5;
  color: #888;
  font-size: 0.9rem;
  font-family: 'Courier New', monospace;
}

.footer a {
  color: #0f0;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}