:root {
    --small-nav-size: 1.5rem;
}

/* ------- Nav Bar ------- */
nav {
	/*display: inline-block;*/
	background-color: var(--heading-colour);
    overflow: hidden;
    width: 100%;
    
	text-align: center;
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	text-decoration: none;
}

nav a {
    display: none;
}

nav select {
    height: 2.9rem;
    width: 75%;
    
    font-size: var(--small-nav-size);
    font-family: 'Roboto', sans-serif;
	/*font-weight: bold;*/
}

nav option {
    height: var(--small-nav-size);
    
    font-size: var(--small-nav-size);
    /*font-family: 'Roboto', sans-serif;*/
	/*font-weight: bold;*/
}

.hidden {
    display: none;
}

@media only screen and (min-width: 960px) {
    nav select {
        display: none;
    }
    
    
    nav a {
        display: block;
    	float: left;
        color: white;
        font-size: 1.25rem;
        
        padding: 1.25% 1% 1.25% 1%;
    	
    	min-height: 1.5rem;
        text-decoration: none;
    }
}
/* fix navbar in place when it's at the top */
.fixed {
  position: fixed;
  top: 0;
  margin: 0;
  
  max-width: var(--maxWidth);
}

.topMargin {
    margin: 4.3% 0 0 0;
}

nav a:hover {
    background-color: #ccc;
    color: black;
}

nav a.active {
    background-color: #6342f5;
    color: white;
    max-height: 2rem;
}