/*
* Text decoration
*/
.dress .text-uppercase {
  text-transform: uppercase;
}
.dress .text-lowercase {
  text-transform: lowercase;
}
.dress .text-capitalize {
  text-transform: capitalize;
}
.dress .text-bold {
  font-weight: bold;
}
.dress .text-bolder {
  font-weight: bolder;
}
.dress .text-underline {
  text-decoration: underline;
}
.dress .text-overline {
  text-decoration: overline;
}
.dress .text-line-through {
  text-decoration: line-through;
}
.dress .text-blink {
  text-decoration: blink;
}
.dress .text-decoration-none {
  text-decoration: none;
}

/*
* Text Position
*/
.dress .text-left {
  text-align: left;
}
.dress .text-right {
  text-align: right;
}
.dress .text-center {
  text-align: center;
}
.dress .text-justify {
  text-align: justify;
}