/* CSS Document */
/* DATEI: loaded-dice_grid.css */
/* AUTHOR: Ralf Eckertz */

.container {
  height:97vh;
  display: grid;
  grid-template-rows: 90px 1fr 53px;
  /*grid-template-rows: 82px 36px 1fr 53px;*/
  grid-template-columns: 100%;
  grid-auto-flow: column;
  grid-row-gap: 0px;
  max-width: 1184px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

/*
header {
  background-color: #000;
  grid-column-start:1;
  grid-column-end:2;
  grid-row-start:1;
  grid-row-end:2;
  text-align:center;
  margin-bottom: 0px;
}
*/

nav {
  /*background-color: #333;*/
  background-color: #000;
  grid-column-start:1;
  grid-column-end:2;
  grid-row-start:1;
  grid-row-end:2;
  text-align:center;
  margin-top: 0px;
  background: url(/img/logo1.png);
  background-repeat: no-repeat;
  background-position: left top; 
  background-color: #000;
}

article {
  grid-column-start:1;
  grid-column-end:2;
  grid-row-start:2;
  grid-row-end:3;
  border-width: 0px;
  border-style: solid;
  border-color: #FFF;
  margin-top: 10px;
  margin-bottom: 10px;
  /*background: url(/img/bg_logo1.jpg);*/
  background-repeat: no-repeat;
  background-position: right center; 
  background-color: #000;
}

footer {
  background-color: #000;
  grid-column-start:1;
  grid-column-end:2;
  grid-row-start:3;
  grid-row-end:4;
  align-self: center;
  justify-self: stretch;
  text-align:center;
  height: 43px;
  padding-top: 5px;
  padding-bottom: 5px;
  /*border-radius: 0px 0px 10px 10px;*/
  border-width: 0px;
  border-style: solid;
  border-color: #FFF;
  /*background: url(/img/bg2.gif);*/
}


