/* OSNOVNO */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: url("https://images.unsplash.com/photo-1489599849927-2ee91cede3ba") no-repeat center/cover;
  color: white;
}

/* TAMNI OVERLAY */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: -1;
}

/* NASLOV */
.main-title {
  font-family: 'Bangers', cursive;
  font-size: 70px;
  text-align: center;
  margin: 20px 0 10px;
  letter-spacing: 3px;
}

/* NAVBAR */
.navbar {
  text-align: center;
  margin-bottom: 30px;
}

.navbar a {
  margin: 0 20px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.navbar a:hover {
  color: red;
}

/* CONTENT */
.content {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  line-height: 1.6;
}

.content img {
  width: 100%;
  border-radius: 10px;
  margin: 15px 0;
}

/* VIDEO & AUDIO */
video, audio {
  width: 100%;
  margin: 20px 0;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  font-family: 'Bangers', cursive;
  font-size: 24px;
  background: #111;
  margin-top: 50px;
}

