.layout {
    display: flex;
}

.flex-none {
    flex: none;
}

.flex {
    flex: 1;
}

.between {
    justify-content: space-between;
}

.around {
    justify-content: space-around;
}

.p-10 {
    padding: 10px;
}

.pl-10 {
    padding-left: 10px;
}

.py-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}