/**
* Stili anteprime 
* Author: Luca Serra
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Poppins', sans-serif;
  color: #555555;
}

.contenitore-wrapper {
  overflow-x: auto;
  padding: 10px;
}

.contenitore {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
}

.anteprima {
  flex: 0 0 100px;
  border-radius: 8px;
  text-align: center;
  padding: 10px;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.anteprima img {
  width: 100%;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.anteprima button {
  margin-top: 10px;
  padding: 8px 16px;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}
   
	
.anteprima button:hover {
    background-color: ;
  }
	