* {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

.d-flex {
  display: flex;
}
.d-grid {
  display: grid;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}
.justify-content-around {
  justify-content: space-around;
}

.align-content-start {
  align-content: flex-start;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
.text-center {
  text-align: center;
}

.align-items-center {
  align-items: center;
}
.position-absolute {
  position: absolute;
}
.justify-items-center {
  justify-items: center;
}
.justify-space-evenly {
  justify-content: space-evenly;
}

.w-100 {
  width: 100%;
}

.w-75 {
  width: 75%;
}
.w-50 {
  width: 50%;
}
.w-25 {
  width: 25%;
}
.h-100 {
  height: 100%;
}
.h-75 {
  height: 75%;
}

.h50 {
  height: 50%;
}

.h-25 {
  height: 25%;
}
