/*
==========-----
Stylesheet for tracts page
==========-----
*/

.tractText {
	text-align: left;
	margin-left: 100px;
	margin-right: 100px;
}

.tractsList {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: row wrap;
	align-content: stretch;
	text-align: center;

	list-style-type: none;
	margin: 0;
	padding: 0;
}

.tractsList a {
	font-weight: bold;
	
	display: flex;
	align-items: center;
	justify-content: center;
	width: 250px;
	height: 42px;

	margin: 10px;

	text-align: center;

	padding: 3px;
	padding-left: 8px;
	padding-right: 8px;
	font-size: 1.05em;

	text-decoration: none;
	color: black;
	background-color: #d5dbeb;

	border: 1px solid black;
	border-radius: 8px;
	box-shadow: 0 0 5px 0 black;
	
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}

.tractsList a:hover {
	background-color: #97a7d1;
}