/* Style Sheet for the photo album list and navigation menus */


/* Link treatment */
a {
	text-decoration:none;	
}

a:link {
  color: black;
}

/* visited link */
a:visited {
  color: black;
}

/* mouse over link */
a:hover {
  color: black;
}

/* selected link */
a:active {
  color: black;
}

/* Header */
#header {
	display: flex;
	justify-content: space-between;
	margin-left: 10px;
	margin-right: 10px;
	pointer-events: none;
	
}

#header a {
	font-size:3vw;
	pointer-events:auto;
}

#header a:hover {
	background-color: black;
	color:white;
}

#header:hover {
	background-color: black;
}

/* Photo Albums List */
#menu {
	line-height:1;
	margin-top:2rem;
}

#menu .title {
	font-size:3vw;
}

#menu a {
	margin-right:10px;
}

.title {
	margin-top:0px;
	text-transform:uppercase;
	color: #000000;
	font-family:Helvetica;
	font-size: 4vw;
	font-weight: bold;
}

/* Years styling */
#menu-years {
	column-count: 4;
	line-height: 20vw;
	margin-right: 10px;
	margin-left:10px;
	pointer-events: none;
}

#menu-years p {
	margin:0px;
}


#menu-years a {
		pointer-events:auto;
}

#menu-years a:hover {
	background-color: black;
	color:white;
}

#menu-years:hover {
	background-color: black;
}
