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

nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    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;
}

nav li:first-child {
    margin-right: auto;
}

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

nav li:last-child {
    margin-left: auto;
    font-weight: bold;
}

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