.nodes{
	display: flex;
    flex-wrap: wrap;
	justify-content: center;
}
.nodes>*{
    overflow: hidden;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
	flex: 1;
	min-width: 140px;
	min-height:250px;
	padding: 10px;
    border-radius: 5px;
	margin:5px;
	margin-bottom:10px;
	background:#f0f0f0;
	box-shadow: var(--box-shadow);
	font-size:16px;
	text-align:right;
	color: #084a83;
}
.nodes a{
	display: block;
	transition:0.2s;
	text-align: center;
}
.nodes a img{
	display: block;
	margin: auto;
}
.nodes a:hover{
    transform: scale(1.1);
}