:root {
  --fontColor: #212121;
  --linkColor: #212121;
  --bodyBackColor: #fefefe;
}

body, html {
  margin: 0;
  width: 100vw;
  height: 100vh;
}

body {
  color: var(--fontColor);
  background-color: var(--bodyBackColor);

  display: grid;
  grid-template-rows: auto auto 1fr auto;
  grid-template-columns: 1fr 2fr 1fr;
}

* {
  box-sizing: border-box;
  font-size:20px;
  font-weight: 300;
  margin:0;
  padding: 0;
  font-family: 'Barlow Condensed', sans-serif;
}


h1{
  font-size: 300%;
  margin-top: 67px;
  font-weight: 500;
}

h2{
  font-size: 200%;
  font-weight: 500;
  margin-top: 50px;
  margin-bottom: 10px;
}

h3{
  font-size: 150%;
  font-weight: 500;
  margin-top: 25px;
  margin-bottom: 15px;
}

h4{
  font-size: 110%;
  font-weight: bolder;
  margin-top: 5px;
  margin-bottom: 5px;
}

hr{
  margin-top: 0px;
  margin-bottom: 0px;
}

ul{
  list-style-type: none;
  font-style: italic;
  color:#424242;
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

span {
  font-weight: bolder;
  color:#424242;
}

table {
  font-style: italic;
  margin-top: 10px;
  margin-bottom: 10px;
}

td{
  padding-left:25px;
}

section.banner {
  grid-row: 1;
  grid-column: 1/span3;
  height: 25px;
  background-color: #1976d2;
}


section.header {
  grid-row: 2;
  grid-column: 1/span 3;

}

section.content {
  grid-row: 3;
  grid-column: 2;
  font-size: 20px;
}

section.footer {
  grid-row: 4;
  grid-column: 1/span3;
  height: 25px;
  /*background-color: #1976d2;*/
}



.logoHeaderWrapper {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
/*  display:flex;
  justify-content: space-between;
height: 105px;*/
}

.demoRespons {
  min-height: 200px;
  padding:20px;
  background-color: #eee;
}
