.flex {
  display: flex;
}

.justify-content {
  justify-content: center;
}

.items-center {
  align-items: center;
}
.border {
  border: 2px solid red;
  margin: 3px;
}

.bg-black {
  background-color: pink;
  color: white;
}

.invert {
  filter: invert(1);
}

.bg-lp {
  background-color: rgb(197, 152, 160);
}
.bg-dp {
  background-color: rgb(223, 100, 120);
}

.rounded {
  border-radius: 7px;
}
.m-1{
    margin: 5px;
}
.p-1{
    padding: 10px;
}
    