.navbar {
    background-color: rgb(73, 73, 163);
    position: relative;
    
}

.navbar ul {
    list-style: none;
    display:flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    
}

.navbar a {
    display: block;
    padding: 1rem 1.8rem;
    color:yellowgreen;
    text-decoration: none;
    font-weight: 600;

}

.navbar a:hover,
.navbar a[aria-current="page"]{
    background: rgb(3, 3, 3)
}

footer {
    background-color: #1e2a1c;
    margin-top: 3rem;
    padding: 2rem 2rem 1.5rem;
    color: #dcd7c2;
    border-top: 4px solid #e67e22;
    text-align: center;
}

footer nav {
    margin-bottom: 1.5rem;
}

.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.footer-nav li {
    margin: 0;
}

.footer-nav a {
    color: #f5e7c8;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    transition: all 0.2s ease;
    border-radius: 30px;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    letter-spacing: 0.5px;
}

.footer-nav a:hover {
    color: #ffb347;
    background-color: rgba(230, 126, 34, 0.2);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.creator {
    font-size: 0.85rem;
    margin: 0.8rem 0 0.4rem;
    opacity: 0.8;
    font-style: italic;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

.copyright {
    font-size: 0.8rem;
    margin: 0.2rem 0 0;
    opacity: 0.7;
    font-family: 'Segoe UI', Roboto, sans-serif;
}