.container {
  display: flex;
  margin-bottom: 2vh;
  background-color: #0072B5;
  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: #F5DF4D;
  color: #FFF;
  border: 0.3vh solid black;
  margin: 5px;
}

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