@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600&display=swap');

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background-color: #000 !important;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #f39c12;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    background-color: #111;
}
