body {
	/*justify-content: center; */
	font-family:'JetBrains Mono', 'Helvetica', 'Arial', 'Times New Roman';
	flex-direction:column;
	align-items: center;
  display: flex;
  color: white;
}


div.content{
	width:95%; 
	background-color: rgb(220, 220, 220);
	border-radius: 5px; 
	padding: 5px;
	display:flex; 
	flex-direction:column;
	justify-content: space-between;
	align-items: flex-start; 
	margin-bottom:20px;
}

div.cards{
	width: 33%;
	background-color: rgb(200, 200, 200);
	border-radius: 8px; 
	padding: 0px 15px 10px 15px;
	margin-left: 5px;
	margin-right: 5px;
	display:flex; 
	flex-direction:column; 
}

div.cards-full{
	width: 100%;
	background-color: rgb(200, 200, 200);
	border-radius: 8px; 
	padding: 0px 15px 10px 15px;
	margin-top: 5px;
	margin-bottom: 5px;
	display:flex; 
	flex-direction:column; 
}


div.cards-vert{
	width: 100%;
	background-color: rgb(200, 200, 200);
	border-radius: 8px; 
	padding: 0px 0px 0px 15px;
	margin-top: 10px;
	display:flex; 
	flex-direction:row; 
}

