html {
	width: 1024px;
	margin:3rem auto;
}
.bingo5, .bingo4, .bingo3 {
	display: grid;
  	grid-gap: 1.5rem;
  	justify-content:center;
}
.bingo5 {
	grid-template-columns: repeat(5, minmax(0,1.5in));
  	grid-template-rows: repeat(5, minmax(0,1.5in));
}
.bingo4 {
  	grid-template-columns: repeat(4, 1.75in);
  	grid-template-rows: repeat(4, 1.75in);
}
.bingo3 {
  	grid-template-columns: repeat(3, 2in);
  	grid-template-rows: repeat(3, 2in);
}
.bingo5 > .box,.bingo4 > .box,.bingo3 > .box {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 4px solid #333;
	background: #ddd;
	border-radius: 1rem;
  	font-size: 2rem;
  	font-weight: bold;
  	text-align: center;
}
td {
	text-align: center;
	font-weight: bold;
	font-size: 1.66em;
}
dt {
	font-size:1.66em;
	font-weight:bold;
}
dt a {
	text-decoration:none;
	color:darkred;
}
dt a:hover {
	color:grey;
}
@media print {
    html {
    	margin:0;
    }
    .break {
    	page-break-after: always;
    }
    .card {
    	margin-top:2in;
    }
    .noprint, .noprint * {
        display: none !important;
    }
}