.flex {
  display: flex;
}

.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.absolute-x-center {
  left: 50%;
  transform: translateX(-50%);
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.text-accent {
  color: #FE530C;
}
.font-italic {
  font-style: italic;
}
.m-auto {
  margin: 0 auto;
}
.mt-normal {
  margin-top: 20px;
}
.text-center {
  text-align: center;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.hidden {
  opacity: 0;
}