* {
	margin: 0;
}

body {
	background-color: #def;
}

a {
	text-decoration: none;
}

p {
	//border: 1px solid gray;
}

header {
	font-size: 3em;
	/*background-color: lightgreen;*/
	text-align: center;
	margin: 5%;
	align-items: center;
}

div.b {
	/*background-color: pink;
	border: 10px dashed yellow;*/
}

.flexB {
	font-size: 2em;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	list-style-type: none;
}

.liB {
	//border: 2px solid white;
	background-color: lightblue;
	transition: .5s;
	font-size: .5em;
	margin: 1%;
}

.liB:hover {
	background-color: yellow;
	/*font-size: .55em;*/
}



.flexC {
	display: flex;
	align-items: center;
	//background-color: lightgreen;
	border: 1px solid black;
	margin: 10px;
}

.pC {
	font-size: 2em;
	display: inline-block;
	width: 60%;
	margin-left: 3%;
	margin-right: 1%;
}

.pCnoIMG {
	background-color: #eee;
	font-size: 2.25em;
	display: inline-block;
	border: 1px solid green;
	width: 60%;
	margin-left: 1%;
	margin-right: 1%;
	margin-top: 3%;
}

.imgC {
	display: inline;
	margin: 1%;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid red;
	width: 10%;
	transition: .75s;
}

.imgC:hover {
	width: 20%;
}

.imgCLinkParent {
	margin: 1%;
	margin-left: auto;
	margin-right: auto;
	width: 10%;
	transition: .75s;
}

.imgCLinkParent:hover {
	width: 20%;
}

.imgCLinkChild {
	width: 100%;
	border: 1px solid red;
}

.aQ {
	text-decoration: none;
}

.liQ {
	display: flex;
	text-align: center;
	align-items: center;
	border: 3px solid black;
	border-radius: 10px;
	background-color: #eee;
	transition: .5s;
	font-size: .5em;
	height: 110px;
	padding: 5px;
	color: black;
	margin: 5px;
}

.liQ:hover {
	background-color: #ccc;
	border-radius: 25px;
}

.liQ:hover.hilit {
	background-color: #bdb;
}
