/* Osnovni stil */ body { margin: 0; font-family: 'Segoe UI', Arial, sans-serif; color: #333; background: url("vrnjacka_banja.jpg") no-repeat center center fixed; background-size: cover; } /* Poluprozirni sloj preko pozadine */ body::before { content: ""; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(255, 255, 255, 0.7); /* svetla prozirna pozadina */ z-index: -1; } /* Navigacija */ nav { background-color: rgba(0, 0, 0, 0.6); padding: 15px; text-align: center; } nav a { display: inline-block; padding: 10px 20px; margin: 0 10px; color: #fff; background: linear-gradient(135deg, #4facfe, #00f2fe); border-radius: 25px; text-decoration: none; font-weight: bold; transition: all 0.3s ease; } nav a:hover { background: linear-gradient(135deg, #43e97b, #38f9d7); transform: scale(1.05); } /* Naslovi */ h1 { text-align: center; margin-top: 40px; color: #222; font-size: 2.2em; } /* Paragrafi */ p { max-width: 700px; margin: 20px auto; line-height: 1.8; text-align: center; font-size: 1.1em; } /* Footer */ footer { background-color: rgba(0, 0, 0, 0.6); color: #fff; text-align: center; padding: 15px; position: fixed; bottom: 0; width: 100%; font-size: 0.9em; }