/* Navbar Styles */
*{
    margin: 0;
    padding: 0;
    background-color: transparent;
}

nav {
    color: rgba(255, 255, 255, 0.5);
    font-family: "Almarai", sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 100;
    background-color: black;
}

nav ul {
    position: relative;
    width: 100%;
    height: 100%;
    list-style: none;
    display: flex;
    justify-content: center;   /* center the middle links across the full bar */
    align-items: center;
}

nav li {
    height: 50px;
}

nav a {
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: white;
}

nav a:hover {
    color: #ff7c7c;
}

/* Logo pinned to the left, independent of the centered links */
nav li:first-child {
    position: absolute;
    left: 0;
    top: 0;
}

nav li:first-child a {
    padding-left: 15px;
}

/* Log In pinned to the right, independent of the centered links */
nav li:last-child {
    position: absolute;
    right: 0;
    top: 0;
    font-weight: bold;
}

@media (max-width: 800px) {
    .hideOnMobile {
        display: none;
    }
}
