.comfortaa {
    font-family: "Comfortaa", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.josefin-slab {
    font-family: "Josefin Slab", serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}


.box{
    padding:5px
}

.card-risorsa {
    border: 1px solid #cdcdcd;
    border-radius: 15px;
    padding: 20px;
    height: 100%; /* Fa sì che tutte le card siano alte uguali */
    background-color: #fff;
}

#particle-canvas {
    position: relative;
    width: 100%;
    height: 50vh; /* o altezza desiderata */
    overflow: hidden;
    background-color: darkblue; 
    background-image: url('https://lexiper.it/enteca_app/main/templates/default/img/boreale.jpg'); 
    background-position: bottom;
}

#particle-canvas canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    z-index: 10;
}

.titolo-overlay {
    z-index: 99;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px 30px;
    border-radius: 10px;
    max-width: 90%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.titolo-overlay h1 {
    margin: 0;
    font-size: 5rem;
    color: #000;
}

.titolo-overlay p {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
    z-index: auto;
}