.containerSalva {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.ripristina {
  padding: 5px 10px;
}

.containerAppunti {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.appunti {
  width: calc(50% - 20px);
  aspect-ratio: 1/1;
  max-width: 300px;
  overflow-y: hidden;
  border-radius: 10px;
  padding: 50px 20px 20px 20px;
  font-style: italic;
  font-family: Arial, sans-serif;
  font-family: 'Dancing Script';
  font-size: 18px;
  box-shadow: 2px 2px 4px black;
  text-align: left;
  height: auto;
  position: relative;
  margin: 10px
}

.appunti:focus {
  width: 100%;
  overflow-y: auto;
}

.appunti::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  width: 35px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: red;
  box-shadow: 1px 1px 2px black;
}

.appunti:focus::before {
  content: "";
}

.appunti:focus {
  outline: none;
}

.appunti {
  background-color: #FEDB37;
}

.appunti:nth-child(4n+1) {
  background: linear-gradient(135deg, #FFD447, #FFEF8A);
  /* giallo oro -> giallo chiaro */
}

.appunti:nth-child(4n+2) {
  background: linear-gradient(135deg, #EA6DF2, #FFB3FF);
  /* lilla acceso -> rosa chiaro */
}

.appunti:nth-child(4n+3) {
  background: linear-gradient(135deg, #00CFFF, #A5F6FF);
  /* azzurro brillante -> celeste tenue */
}

.appunti:nth-child(4n+4) {
  background: linear-gradient(135deg, #6DFF82, #C8FFD0);
  /* verde acceso -> verde menta chiaro */
}