﻿  
/* use the variables */
body {
color: var(--some-value);
background-color: var(--some-other-value);
}

a.thumbnail h3{
    color: rgb(0, 36, 84);
    line-height: 100px;
    margin: 0px;
}
.thumbnail.blue-thumb{
    background-color: rgb(0, 36, 84);
	display: flex;
	height: 100%;
  	flex-direction: column;
}
a.thumbnail.blue-thumb{
    color: rgb(227, 227, 227);
	line-height: 150%;
	flex: 1;
}


