body {
  color: darkblue;
  text-align: center;
  background-color: lightcyan;
}
.column {
  flex: 20%;
  min-height: 90vh;
  text-align: center;
  
  font-size: 3em;
  background-color: aliceblue;
  border-right: 8px solid rgb(64, 64, 110);
}

#lastHeader {
  border-right: none;
}
.shape {
  margin-top: 2.5vw;
  margin-left: 2.5vw;
  margin-bottom: 2.5vw;
  height: 60px;
  color: white;
  display: flex;
  align-self: center;
  cursor: grab;
  touch-action: none;
}
.row {
  display: flex;
  min-width: 100vw;
  flex-wrap: wrap;
}
.shapecontainer {
  display: flex;
  width: 90%;
  min-height: 85%;
  margin: 3.5%;
  border: .1em dashed rgb(5, 9, 43);
  flex-wrap: wrap-reverse;
}
@media screen and (max-width: 480px) {
  .shape {
    height: 40px;
    margin-top: 3vw;
    margin-left: 3vw;
    margin-bottom: 3vw;
  }
  .column {
    flex: 0 0 50%;
    max-width:50%;
    border-right: none;
    border-bottom: 8px solid rgb(64, 64, 110);
    min-height: 40vh;
    font-size: 2em;

  }
  .shapecontainer {
    min-height: 50%;
    max-height: 40vh;
  }
  .column:nth-child(3),
  .column:nth-child(4) {
    border-bottom: none;
  }
}
