*, *:before, *:after {
  box-sizing: border-box;
}

body {
  margin: 0px 0px;
  font-family: 'Open Sans', 'sans-serif';
  background-color: #d5d4d4;
  color: #555;
}

h1, p {
  margin: 0 0 1em 0;
}

.wrapper {
  max-width: 900px;
  margin: 0 10px;
  display: grid;
  grid-gap: 10px;
}
.other-gird-content{
  display: grid;
  grid-gap: 10px;
}

@media screen and (min-width: 768px) {

  /* no grid support? */
  aside {
    float: left;
    width: 20%;
  }

  .content {
    float: right;
    width: 80%;
  }
  .block{
    float:left;
    width: 50%;
  }
  .other-gird-content{
    margin: 20 auto;
	grid-template-columns: 1fr 1fr;
  }

  .wrapper {
    margin: 0 auto;
    grid-template-columns: 1fr 3fr;
  }
  
  header, footer {
    grid-column: 1 / -1;
    /* needed for the floated layout */
    clear: both;
  }

}

.wrapper > * {
  background-color: #d5d4d4;
  color: #000;
  border-radius: 5px;
  padding: 5px;
  font-size: 110%;
  text-align: justify;
  /* needed for the floated layout*/
  margin-bottom: 10px;
}

/* We need to set the widths used on floated items back to auto, and remove the bottom margin as when we have grid we have gaps. */
@supports (display: grid) {
  .wrapper > * {
    width: auto;
    margin: 0;
  }
}