/* Stili generali per i pulsanti */
.literature-review {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 50px;
}

button {
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  margin: 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}


.btn-1 {
  background-color: #16a085;
  color: white;
}
.btn-1:hover {
  animation: verticalBounce 0.5s forwards;
}
@keyframes verticalBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


.subheader {
  font-size: 2rem;
  color: #575EAA;
  text-align: center;
  height: 32px;
  padding-top: 8px;
  margin-left: 16px;
}
 
.lists {
  font-size: 1rem;
  color: rgba(0, 0, 0, .87);
  text-align: left;
  height: 40px;
  margin-left: 32px;
  padding-top: 16px;
  padding-left: 16px;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,.12);
 }

.lists:hover {
  font-weight: bold;
  background-color: #4dd0e1;
}
.tick {
            color: green;
            margin-right: 5px;
        }