.bfgName {
	color: #0032C6
}

/* Basic reset */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Navigation bar container */
.navbar {
    display: flex;
    justify-content: space-between;
	align-content: center;
    align-items: center;
	
    background:
        /* Neon horizontal glow */
        linear-gradient(90deg, rgba(0,0,100,0.4) 0%, rgba(40,120,250,0.4) 40%, rgba(40,120,250,0.4) 60%, rgba(0,0,100,0.4) 100%),

        /* Vertical darkening */
        linear-gradient(180deg, rgba(60,150,255,1) 5%, rgba(0,0,100,1) 95%),

        /* Base color */
        rgba(100,0,0,100);
    
    padding: 15px 25px;
	
	width: 100%;
	
}

.nav-table {
	width: 100%;
    table-layout: fixed;

}

/* Logo / site title */
.nav-logo {
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
	width: 10%;
}

/* Navigation links */
.nav-links {
    list-style: none;
    display: table;
    gap: 20px;
    margin: 0;
    padding: 0;
	width: 100%;
	align-content: center;
}

.nav-links a {
    color: #ddd;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
	align-content: center;
}

.nav-links a:hover {
    color: #fff;
}

.navbar tr {
	width: 100%;
}

.navbar td {
	width: auto;
	align-content: center
	
}



/* Page content */
main {
    padding: 40px;
}
