.grid {
  display: grid;
  grid-template-columns:
    repeat(
      auto-fit,
      minmax(
        350px, /* min value */
        1fr /* max value */
      )
    );
  gap: 20px;
}

.item {
  padding: 1.35rem;
  /*background: #90bcbc;
  border-radius: 4px;*/
    border-radius: .25rem;
    -webkit-box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);
    box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);  
}

h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.scheda {
  position: relative;
  text-align: center;
  color: white;
  text-shadow: 2px 0 0 #000, -2px 0 0 #000, 0 2px 0 #000, 0 -2px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
}

 .scritta-scheda {
    background: rgba(240, 240, 240, 0.4);
    width: 100%; 
    position: absolute;
    top: 8px;
}
 .scritta-scheda p {
    text-align: right;
    margin-right: 16px;
    margin-bottom: 0px;
}