body {
    background-color: #6fb98f;
}

.head-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex-container {
    flex-direction: row;
    align-items: flex-start;
    width: 600px;
}

.sample1 > *{
    flex-grow:0;
}

.sample2 > *{
    flex-grow:1;
}

.sample3 div:nth-child(2){
    flex-grow: 1;
}
.sample3 div:nth-child(3){
    flex-grow: 2;
}


.sample4 div:nth-child(1){
    flex-grow: 1;
}
.sample4 div:nth-child(2){
    flex-grow: 1;
}
.sample4 div:nth-child(3){
    flex-grow: 4;
}
