commits again and again
Deploy / trigger (push) Successful in 22s

This commit is contained in:
2026-03-28 11:43:25 +01:00
parent b8f0ba86e1
commit 46de742130
4 changed files with 45 additions and 42 deletions
+37
View File
@@ -213,6 +213,43 @@ footer a {
text-decoration: none;
}
/* Stili speciali solo per le card del team */
.team-container {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
margin-top: 40px;
}
.team-card {
background: #f3f4f6;
padding: 30px 20px;
border-radius: 15px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
width: 280px;
text-align: center;
transition: transform 0.3s;
}
.team-card:hover {
transform: translateY(-10px);
/* Effetto sollevamento al passaggio del mouse */
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}
.avatar {
font-size: 60px;
margin-bottom: 15px;
}
.ruolo {
color:#10b981;
font-weight: bold;
margin-bottom: 10px;
font-size: 14px;
}
/* --- RESPONSIVE --- */
@media (max-width: 768px) {
.crypto-columns {