/* ==== Reset ==== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #000000;   
}

/* Prevent main content from being hidden behind the navbar */
main {
    margin-top: 80px; 
}

/* Special override for login page */
body.login-page {
    background: url("../images/landing.jpg") no-repeat center center fixed;
    background-size: cover;
}
