/* Navigation bar style */
nav {
    /* Font for nav bar */
    font-family: "Protest Strike", sans-serif;
    /* Fix the navigation at the top */
    position: fixed;
    /* Ensure it's at the very top */
    top: 0;
    /* Full width of the nav bar */
    width: 100vw;
    /* Keeps it ontop of other elements */
    z-index: 1000;
}

/* Nav ul selects any ul that's inside a nav */
nav ul {
    /* Removes bullet points */
    list-style-type: none;
    /* Elements appear in a row */
    display: flex;
    /* Background Colour */
    background-color: #decce7;
    /* Darker text for contrast */
    color: #3e3e3e;
}

/* List items within any nav bar styles */
nav ul li {
    /* Increased padding for better touch targets */
    padding: 10px;
    /* Dark border for visibility */
    border: 2px solid #d6bbe4;
    margin: 5px;
    /* Shows pointer upon hovering element */
    cursor: pointer;
    /* Rounded corners for buttons */
    border-radius: 10px;
    /* Smooth transition on hover */
    transition: all 0.2s ease;
}

/* Hover effect for nav items */
nav ul li:hover {
    /* Lighten the color on hover */
    background-color: #d6bbe4;
    /* Slightly scale up on hover */
    transform: scale(1.05);
}