
.carrusel {
  height: 10vh;
  display: flex;
  align-items: center;
  background-color: #1f4b1a;
}

.carrusel-items {
  display: flex;
  overflow-x: hidden;
  overflow-y: hidden;
  /*padding: 30px 0px;*/
  width: 100%;
}


.carrusel-item {
  /*
  min-width: 300px;
  max-width: 300px;
  height: 200px;
  outline: 2px solid black;
  cursor: pointer;
  */
  min-width: 110px;
  height: 20px;
  margin: 20px;
      width: 20%;
    text-align: center;
}

.carrusel-item img {
  /*
  width: 100%;
  height: 100%;
  */
  object-fit: cover;
}
/*
.carrusel-item:hover {
  transform: scale(1.2);
}
*/