
.wrapper {
  height:100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 40px auto 60px;
}

.wrapper > div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.template-header {
  grid-column: span 12;
}

.menu {
  grid-column: span 4;
}

.content-no-menu, .content-menu {
  padding: 10px;
}


.content-no-menu {
  grid-column: span 12;
}

.content-menu {
  grid-column: span 8;
}

.footer {
  grid-column: span 12;
}

.footer .social {
  border-top: 1px solid gray;
  text-align: center;
  padding: 5px 15px 10px 15px;
}

a.footer_link {
  margin: 5px;
  box-sizing: border-box;
  border: 1px none black;
  color: black;
}

a.footer_link:hover {
  color:rgb(132, 204, 233);
}

/* @media screen and (max-width: 480px) {
  .header {
      grid-column: span 6;
  }
  
  .menu {
      grid-row: 1;
      grid-column: span 6;
  }
  
  .content {
      grid-column: span 12;
  }
} */

html, body {
  box-sizing: border-box;
  background-color: #fff;
  height: 100%;
  padding: 10px;
  margin: 0px;
}

.homeimage {
  width: 100%;
  height: 100%;
  background-image: url(../../images/squarelogo_2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 200px;
  max-height: 650px;
}