.box11
{
	grid-column: 3/4; 
	grid-row: 8/9;
	padding: 20px;
	background-color: #A30031;
	color: whitesmoke;
			display: grid;
			grid-gap:4px;
			grid-template-columns: repeat(10, 1fr);
			grid-template-rows: repeat(2, auto);
}




.box11-1{
	grid-column: 1/11; 
	grid-row: 1/2;
}


a:link {
  color: whitesmoke;
    text-decoration: none;

}

/* visited link */
a:visited {
  color: whitesmoke;
}

/* mouse over link */
a:hover {
  color: whitesmoke;
  text-decoration: underline;
}

/* selected link */
a:active {
  color: whitesmoke;
      text-decoration: none;

}