.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-warp {
  flex-wrap: wrap;
}

.flex-nowarp {
  flex-wrap: nowarp;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-around {
  justify-content: space-around;
}

.justify-between {
  justify-content: space-between;
}

.justify-evenly {
  justify-content: space-evenly;
}


.align-start {
  align-items: flex-start;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.gap10 {
  gap: 10px;
}

.gap20 {
  gap: 20px;
}

.flex-1 {
  flex: 1;
}