.carrusel {
  height: 120px;
  display: flex;
  align-items: center;
}

.carrusel-items {
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  padding: 30px 0px;
}

.carrusel-item {
  min-width: 100px;
  max-width: 100px;
  height: 100px;
  outline: 2px solid white;
  cursor: pointer;
}

.carrusel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carrusel-item:hover {
  transform: scale(1.2);
}
