.container {
  display: flex;
  margin-bottom: 2vh;
  background-color: lightblue;
  border: solid 2px;
}

#no-wrap {
  flex-wrap : nowrap;
}

#wrap {
  flex-flow : wrap;
}

#wrap-reverse {
  flex-flow : wrap-reverse;
}

.box {
  width: 20vw;
  height: 20vh;
  background-color: #0563F0;
  color: #FFF;
  border: 0.3vh solid black;
  margin: 5px;
}

h1, h2 {
 font-family: "Arial", sans-serif; 
}

