.container {
  display: flex;
  margin-bottom: 2vh;
  background-color: lightblue;
  height: 20vh;
  border: solid 2px;
  padding-top: 5px;
}

#start {
  justify-content: start;
}

#flex-start {
  justify-content: flex-start;
}

#end {
  justify-content: end;
}

#flex-end {
  justify-content: flex-end;
}

#center {
  justify-content: center;
}

#space-between {
  justify-content: space-between;
}

#space-around {
  justify-content: space-around;
}

#space-evenly {
  justify-content: space-evenly;
}

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

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

