.pagewrapper {
    max-width: 570px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
.grey {
    width: 180px;
    height: 180px;
    background-color: #999;
    margin: 5px;
    display: flex;
}
.orange {
    width: 60px;
    height: 60px;
    background-color: orange;
}
.one {
    justify-content: flex-start;
}
.two {
    justify-content: center;
}
.three {
    justify-content: flex-end;
}
.four {
    justify-content: flex-start;
    align-items: center;
}
.five {
    justify-content: center;
    align-items: center;
}
.six {
    justify-content: flex-end;
    align-items: center;
}
.seven {
    justify-content: flex-start;
    align-items: flex-end;
}
.eight {
    justify-content: center;
    align-items: flex-end;
}
.nine {
    justify-content: flex-end;
    align-items: flex-end;
}