@import url("fonts.css");

.f-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.f-col {
  display: flex;
  flex-direction: column;
}
.f-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.two-line {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.three-line {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

* {
  transition: all 0.2s ease-in-out;
}


