h1 {color:blue;}

/*Here is the div styling, just to have some extra padding*/
div {
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
/*Here is the paragraph styling, featuring epic dotted border and some margins*/
p {
    border-style: dotted;
    margin-top: 10px;
    margin-bottom: 1px;
     margin-right: 10px;
    margin-left: 10px;
}

.container {
    display: flex;
    /* zesty NON DEFAULT column alignment */
    flex-direction: column;
    background-color: DodgerBlue;
}

/*The return of the dotted border so that I can see what is going on
if I had time I would add gaps between the red boxes

   */
.container div {
  	border-style: dotted;
    background-color: red;
    margin: 10px;
    padding: 10px;
    font-size: 30px;
}