body {
    background-image: url('../immagini/immagine_backgraund.PNG');
    background-size: cover;       
    background-position: center;  
    background-attachment: fixed; 
    background-repeat: no-repeat;


h1 {
    text-align: start;
    font-size: 2.5rem;
    background-color: brown(252, 252, 252, 0.5);
    color: rgb(255, 255, 255); 
    background-color: none;   
    margin-top: 10px;
    margin-bottom: 40px;
    font-weight: 600;
    padding: 40px
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ddd6d6;
    margin-top: 40px;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.container {
    margin-top: 100px;
}

.card {
    border-color: whitesmoke ;
    border-radius: 12px;
    box-shadow: 0 4px 16px gray;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background-color: #1a1a1a;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.card img {
    border-radius: 12px 0 0 12px;
    object-fit: cover;
    height: 100%;
}

.card-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffffff;
}

.card-text {
    font-size: 0.9rem;
    color: #cccccc;
}

.text-body-secondary {
    font-size: 0.75rem;
    color: #888888 !important;
}
}

