/*
* UTILITY
*/

.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.justify-stretch {
  justify-content: stretch;
}

.row {
  flex-direction: row;
}
.column {
  flex-direction: column;
}
.gap-1 {
  gap: 1rem;
}
.full-width {
  width: 100%;
}
.full-height {
  height: 100%;
}
.max-h-0 {
  max-height: 0;
}

.height-5 {
  height: 5rem;
}

.width-3 {
  width: 3rem;
}

.pad-1{
    padding:1rem;
}

.pad-left-1 {
  padding-left: 1rem;
}

.align-self{
    align-self:center;
}
