/* Default CSS */
/* Generated by the CoffeeCup HTML Editor - www.coffeecup.com */

body {  
background-color: #a4a4a4;
font-size: 15px;
line-height: 1.2;
font-family: arial, sans-serif;
margin: 0px;
}

.container {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(auto, auto);

background-color: #e4e4e4;   
color: #000000;
min-width: 1100px;        
max-width: 1100px;
border: 10px solid #852121;
margin: 0 auto !important; 
float: none !important;
}

.cell {
padding: 15px;
display:grid;
align-content: center;
justify-content: center;
}

.header {
grid-column: 1 / span 2;
background-color: #000000;
color: #e4e4e4;
display:grid;
align-content: center;
justify-content: center;
border-bottom: 10px solid #852121;
}

.span2 {
  grid-column-end: span 2;
}