body {
  margin: 40px;
    background-color: white;
    font-size: 1.3rem;
	font-family: Calibri;
	font-weight: 400;
	font-style: normal;
}

.divider hr {
	color: #252379;
	background: #252379;
	height: 0.001rem;
	max-width:100%;
	margin-left: 0;
}

a > hr {
	color: #252379;
	}

h1, h2, h3 {
text-align: center;
color: #252379;
}

.wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px,20vw));
  grid-gap: 20px;
  background-color: white;
  color: #444;
  text-decoration: none;
}

@media only screen and (max-width: 930px) {
	.wrapper {
		grid-template-columns: repeat(3, minmax(200px,20vw));
	}
}

@media only screen and (max-width: 700px) {
	.wrapper {
		grid-template-columns: repeat(2, minmax(200px,20vw));
	} 
}

@media only screen and (max-width: 480px) {
	.wrapper {
		grid-template-columns: auto;
	}
}

.box {
  background-color: #007DB4;
  color: #fff;
  border-radius: 5px;
  padding: 20px;
  text-align:center;
}

a.divlink {
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
	line-height: 1.5;
}

a:visited, a:link {
	color: white;
	}

a:hover, a:active {
    color:yellow;
	}
