.containerwall {
  width:100%;
  background-color: #fff;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.rowwall {
  display: flex;
}

.rowwall:nth-child(even) .bricks:first-child, .rowwall:nth-child(odd) .bricks:last-child {
  width: 80px;
}

.bricks {
  width: 200px;
  height: 60px;
  border-radius: 5px;
  margin: 2px;
  word-wrap: break-word;
}


.containerwallmobile {
  width:100%;
  background-color: #fff;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.rowwallmobile {
  display: flex;
}

.rowwallmobile:nth-child(even) .bricksmobile:first-child, .rowwall:nth-child(odd) .bricksmobile:last-child {
  width: 90%;
}

.bricksmobile {
  width: 20%;
  height: 70px;
  border-radius: 5px;
  margin: 2px;
  word-wrap: break-word;
}