body {
  font-family: "Poppins", sans-serif;
  background-color: #fafafa;
}

.row {
  display: flex;
  justify-content: center;
  align-items: center;
}
.selo {
  border-radius: 5px;
  box-shadow: 7px 7px 13px 0px rgba(50, 50, 50, 0.22);
  padding: 20px;
  margin: 10px;
  /*width: 300px;*/
  transition: all 0.3s ease-out;
  background-color: white;
}

.selo:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

.selo p {
  color: #a3a5ae;
  font-size: 16px;

}

.image {
  float: right;
  max-width: 64px;
  max-height: 64px;
}

.blue {
  border-left: 7px solid #4895ff;
}

.green {
  border-left: 7px solid #3bb54a;
}

.red {
  border-left: 7px solid #b3404a;
}

.orange {
    border-left: 7px solid #e90;
}

.purple{
    border-left: 7px solid #660066;
}

.gray {
    border-left: 7px solid #a3a5ae;
}

.tamanhoSeloPadrao{
    min-height: 110px; 
    max-height: 110px;
    min-width: 200px;
}