@page {
    /* dimensions for the whole page */
    size: A4;
    margin: 0;
}
 

html {
    /* off-white, so body edge is visible in browser */
    background: #666;
}

body {
	font-family: Arial, sans-serif;
}

.bottomrightbottom { 
	position: absolute;
	left: 0; 
	top: 10%;
	right: 0; 
	background: #000;
	text-align: center;
	overflow: hidden;
	display: table-cell;
}
	
.bottomrightbottom p {
	font-family: 'Impact';
	color: Yellow;
	font-size: 50px;
	margin: 50px;
	text-align: center;
	vertical-align: center;
}

.no-print {
	margin-left: 10px;
}

@media print{
	@page {size: landscape}
    
	.no-print, .no-print * {
        	display: none !important;
   	}

}
