body {

    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;

}

/* Header Styles: Styling for the navigation bar and header */
header {

    padding: 0.7rem 0; /* Adjusted padding for better fit */
    position: sticky;
    top: 0;
    z-index: auto;
    
}

.Navigation-Bar {    

    display: flex;
    justify-content: flex-end;
    top: 0;

}

.Navigation-List {

    list-style: none;
    display: flex;
    gap: 7px;
    margin: 0;
    padding: 7px;

}

.Navigation-List li {

    position: relative;

}

.Navigation-List a {

    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 5px;

}

.Navigation-List li :hover {

    background-color: aqua;

}