/* Resetting box-sizing for all elements */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #e6e6e6;
}

/* NAVBAR */
.navbar {
    background: linear-gradient(to right, #0f2c56, #1e4f8f);
    color: #fff;
    padding: 14px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;  /* This will make the navbar stick at the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;  /* Ensures the navbar stays above other content */
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
}

.nav-links a:hover {
    color: #f0f0f0;
}

/* Adding space to the top of the body to prevent content from being hidden under the navbar */
body {
    padding-top: 40px;  /* Adjust this value based on the height of your navbar */
}


/* Remove underline and make logo text white */
.navbar .logo a {
    text-decoration: none; /* Removes underline from the link */
    color: white; /* Makes the text color white */
}

.navbar .logo span {
    color: white; /* Makes the text color white when not clickable */
    font-size: 14x; /* Adjust the font size as needed */
    cursor: default; /* Ensures it's not clickable */
}
