.category-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  padding: 10px 0;
  width: 280px;
  background-color: #f1f1f1;
  align-self: stretch;
  border-radius: 20px;
  text-align: center;
  transition: box-shadow 0.3s ease-in-out;
}

.category-card:hover {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.category-card__img {
  width: 180px;
  height: 180px;
  background: url(/imgs/981347426e8b4bc570336342046ae59f.png) center/cover;
  background-color: #f1f1f1;
  border-radius: 50%;
  padding: 15px;
  position: relative;
}

.category-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.category-card__description {
  width: 100%;
  background-color: #3c3c3c;
  padding: 20px 15px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.category-card__description--title {
  margin: 0;
  font-size: 1.1rem;
  width: 100%;
}
