/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 9 lut 2022, 08:55:03
    Author     : Andrzej Czupryna
*/



.container-xb {
   display: grid; 
  grid-template-columns: 1fr; 
  grid-template-rows: 0.1fr 1.6fr 0.3fr; 
  gap: 0px 0px; 
  grid-template-areas: 
    "header"
    "main"
    "footer"; 
  justify-content: center; 
  align-content: center; 
  justify-items: center; 
  align-items: center; 
  width: 100%; 
  height: 100%; 
}

.container-xb .item {

}

.item-1 {
  grid-area: header;

}
.item-2 {
  grid-area: main;

}
.item-3 {
  grid-area: footer;
  justify-self: stretch;
  border-top: solid 1px #e9e9e9;
}