*{
	font-family: 'Roboto', sans-serif;

}

.title{
	display: block;
	background-color: orange;
	border-radius: 15px;
	margin-bottom: 15px;
	padding: 10px 35% 10px 35%;
	width: 30%;
}
#pages{
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
	align-items: stretch;
	align-content: flex-start;
}

#pages>*{
	margin-left: 10px;
	margin-bottom: 10px;
}
#pages>div{
	width: 320px;
	display: grid;
	grid-template-columns: auto auto;
	padding: 10px;
	border: solid 3px #aaaaaa;
	border-radius: 10px;
	cursor: pointer;
	column-gap: 20px;
	-webkit-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.5);
	transform: translateX(-100vw);
	transition: all 0.75s ease;
}
#pages>div:hover{
	-webkit-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.75);
	box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.75);
	border: solid 3px #999999;
	transform: translateY(-1px)!important;
	background-color: aliceblue;
}
#pages>div>div:last-child{
	position: relative;
}
#pages>div>div>div:last-child{
	position: absolute;
	bottom: 0px;
	left: 0px;
}
#pages>div>div:first-child{
	height: 150px;
	width: 150px;
}
#pages>div>div>img{
	width: 100%;
	height: 100%;
}
.pageTitle{
	font-size: larger;
	font-weight: bold;
}

button.orange{
	background-color: orange;
	border: solid 2px #c98300;
	outline-color: #bf7f06; 
	color: whitesmoke;
}
button.orange:hover{
	background-color: #e89700;
}
button.orange:active{
	background-color: #eda41a;
}
button{
	padding: 5px;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
}
button.blue{
	background-color: #04bac7;
	border: solid 2px #08818a;
	outline-color: #186166; 
	color: whitesmoke;
}
button.blue:hover{
	background-color: #00a8b5;
}
button.blue:active{
	background-color: #00c7d6;
}
.serverOffline {
	color: red;
	text-decoration: underline;
	font-weight: bold;
}

/*# pm2 start /volume1/web/node/bots/synChat.js --name="SynChatBot"
# pm2 start /volume1/web/node/uclhoraire/index.js --name="uclHoraireUpdater"*/