/*Group*/
.Group {
    background-color: antiquewhite;
    border: 1px solid black;
    padding: 10px;
    margin-bottom: 10px;
    height: 300px;

    /*flex*/
    display: flex;
    gap: 10px;
}
    /*flex Direction*/
.GroupFour,
.GroupFive,
.GroupSix{
    flex-direction: column;
}
    /*Justify content*/
.GroupOne {
    justify-content: start;
    align-items: start;
}

.GroupTwo {
    justify-content: center;
    align-items: center;
}

.GroupThree {
    justify-content: end;
    align-items: end;
}

.GroupFour{
    justify-content: start;
    align-items: start;
}

.GroupFive {
    justify-content: center;
    align-items: center;
}

.GroupSix {
    justify-content: end;
    align-items: end;
}

    /*Classmate*/
.Classmate {
    background-color: aliceblue;
    border: 1px solid brown;
    padding: 10px;
} 

/* My Clothes */
#Brianna {
    display: flex;
    gap: 10px;
    align-self: end;
}
