 body {
    background: lightgrey;
    font-family: "verdana", "arial", "helvetica";
    font-size: 1.0em;
  }
  h1 {
    text-align: left;
    color: white;
    margin-left: 10px;
  }
  p{
    text-align: left;
    padding-left: 10px;
  }
  .img-queens{
    float: right;
    margin-right: 10px;
  }
  .container { 
    position: relative;
    background: white;
    /*width: 50%;
    /*margin: 200px auto;*/
    /*height: 50%;*/
    border: 5px solid;
    padding-left: 0px;
    padding-right: 0px;
  }
  
  
  
  .flex-container {
    /* We first create a flex layout context */
    display: flex;
    
    /* Then we define the flow direction 
       and if we allow the items to wrap 
     * Remember this is the same as:
     * flex-direction: row;
     * flex-wrap: wrap;
     */
    flex-flow: row wrap;
    
    /* Then we define how is distributed the remaining space */
    justify-content: space-around;
    
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .flex-item a button{
    background: darkblue;
    width: 200px;
    padding: 15px;
    border: none;
    margin-bottom: 5px;
    color: white;
    font-family: "verdana", "arial", "helvetica";
    font-weight: bold;
    font-size: 1.0em;
    text-align: center;
  }
  
  .flex-item a button:focus {
    outline: none;
    color: #fff;
    background: firebrick;
  }
  
  
  
  .box-blue-top {
    display: block;
    background: darkblue;
    width: 100%;
    height: 50px;
  }
  .box-yellow-bottom {
    display: block;
    background: #FFC50B;
    margin-top: 5px;
    width: 100%;
    height: 10px;
  }
  .box-red-bottom {
    display: block;
    background: red;
    margin-top: 0px;
    width: 100%;
    height: 10px;
  }
  .box-blue-bottom {
    display: block;
    background: darkblue;
    margin-top: 0px;
    margin-bottom: 0px;
    width: 100%;
    height: 20px;
  }
  