/* genernal styling */


body {
  min-height: 100vh;
  margin: 0%;
}

/* id's */

/* classes */

/* quick flex */

.flex-column-wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.flex-column-nowrap {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}


.flex-row-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.flex-row-nowrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}