/* Position content */
.left-bottom {
  bottom: 0;
  left: 0;
}

.center-bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.right-bottom {
  bottom: 0;
  right: 0;
}

.left-center {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.right-center {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.left-top {
  top: 0;
  left: 0;
}

.center-top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.right-top {
  top: 0;
  right: 0;
}

/* Justifies Text Left Center or Right */
.left-align {
  align-items: start;
  text-align: start;
}

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

.right-align {
  align-items: end;
  text-align: end;
}
