html, body{
    width: 100%; height: 100%;
}

.row{
    display: flex; width: 100%; flex-direction: row;
}

.column{
    display: flex; flex-direction: column;
}

.w100{
    width: 100%;
}

.w50{
    width: 50%;
}

.center{
    justify-content: center; align-items: center;
}

.end{
    justify-content: flex-end; align-items: flex-end;
}

.start{
    justify-content: flex-start; align-items: flex-start;
}

#globalContainer div:nth-child(1) img{
    width: 80%;
}