h1 {
  font-size: 2.4rem;
  font-weight: 600;
  padding-bottom: 0.8rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  padding: 0.8rem 0;
}

h3 {
  font-size: 1.6rem;
}

.mb-16 {
  margin-bottom: 1.6rem;
}

.mt-16 {
  margin-bottom: 1.6rem;
}

.py-16 {
  padding: 1.6rem 0;
}

.py-8 {
  padding: 0.8rem 0;
}

.mt-1 {
  margin-top: 1rem;
}

.p-1 {
  padding: 1rem;
}

.cursor-pointer {
  cursor: pointer;
}

.maxw-250 {
  max-width: 250px;
}

.icon {
  display: inline-block;
  width: 16px;
  height: 16px;
}

.icon-bigger {
  display: inline-block;
  width: 24px;
  height: 24px;
}

.grayscale {
  filter: grayscale(1);
}

.d-flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.gap-1 {
  gap: 1rem;
}

.align-items-end {
  align-items: end;
}
.align-items-center {
  align-items: center;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-end {
  justify-content: end;
}

.text-muted {
  color: var(--gray-text);
}

.h1-bigger {
  font-size: 4.8rem;
}

.href {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  padding: 0.6rem 1.2rem;
  border-radius: 50rem;
  display: inline-block;
  border: 2px dotted transparent;
}

.href:hover,
.href:active {
  border: 2px dotted;
}

.href:hover .hover-rotate,
.hover-rotate:hover {
  transform: rotate(-10deg);
}

.w-100 {
  width: 100%;
}

.btn:link {
  display: inline-block;
}

.btn {
  background-color: var(--hover-bg);
  border: none;
  border-radius: 1.2rem;
  width: 100%;
  padding: 1.2rem 2.4rem;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--greyer);
}

.btn-primary {
  background-color: #228be6;
  color: var(--background);
}

.btn-primary:hover {
  background-color: #1c7ed6;
}

.btn-danger {
  background-color: #f03e3e;
  color: var(--background);
}
.btn-danger:hover {
  background-color: #e03131;
}
.btn:disabled {
  background-color: var(--greyer);
  cursor: auto;
}

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

.text-danger {
  color: #f03e3e;
}

.text-success {
  color: #37b24d;
}

.list-unstyled {
  list-style: none;
}

h4 {
  font-size: 2rem;
}

small {
  font-weight: 400;
}

.border-primary {
  border-color: #228be6 !important;
}

.text-bg-primary {
  background-color: #228be6 !important;
  color: var(--background) !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-decoration-none {
  text-decoration: none;
}

.d-grid {
  display: grid;
}

.gap-3 {
  gap: 3rem;
}

.grid--2-columns {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3-columns {
  grid-template-columns: repeat(3, 1fr);
}

.grid-column-2 {
  grid-column: 2 / 3;
}

.justify-self-end {
  justify-self: end;
}

.w-auto {
  width: auto !important;
}
