@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; font-family: 'Montserrat', sans-serif; }
body { display: flex; flex-direction: column; }
.content { flex: 1 0 auto; padding: 40px 20px; max-width: 1200px; margin: 0 auto; width: 100%; }
.footer { flex-shrink: 0; background: #222; color: white; text-align: center; padding: 20px; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 15px 50px; }
.nav-links { display: flex; list-style: none; gap: 20px; }
body { background: #0f0c29; color: #00ffcc; }
.navbar { background: #1b1b1b; border-bottom: 2px solid #00ffcc; }
.nav-btn {
color: #00ffcc;
border: 1px solid #00ffcc;
padding: 8px 15px;
text-decoration: none;
border-radius: 5px;
transition: 0.3s;
}
.nav-btn:hover {
background: #00ffcc;
color: #000;
box-shadow: 0 0 15px #00ffcc;
transform: scale(1.1); /* Кнопка увеличивается и светится */
}