.box-flex{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }

.box-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 10px;
}

.box-grid-item-1, .box-grid-item-2{
    grid-column-start: 1;
    grid-column-end: 6;
}
.img{
    width: 500px;
}
.divider{
    border-top: 3px dotted #bbb;
    
}