body{
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main{
    flex: 1;
}

.title-content{
    height: 500px;
    background-color: rgba(0, 0, 0, 0.5);
}

.background-img{
    background-image: url(../img/Panorama.webp);
    background-size: cover;
}

.image-riviste{
    background-image: url(../img/rivista.jpg);
    background-size: cover;
}

.image-cartelloni{
    background-image: url(../img/cartelloni.jpg);
    background-size: cover;
}

.image-radio{
    background-image: url(../img/radio.jpeg);
    background-size: cover;
    background-position: right;
}

.image-tv{
    background-image: url(../img/tv.jpg);
    background-size: cover;
    background-position: center;
}

.w-fc{
    width: fit-content;
}

.card-h{
    height: 300px;
}

.center{
    display: flex;
    align-items: center;
    justify-content: center;
}

.link{
    color: black;
    text-decoration: none;
}

.options:hover{
    background-color: rgb(230, 230, 230) !important;
    color: black;
}

.riviste{
    max-height: 600px;
}

.cartelloni{
    object-fit:contain;
    height: 400px;
}

.w-33{
    width: 33%;
}

.w-40{
    width: 40%;
}

.w-60{
    width: 60%;
}



@media only screen and (max-device-width: 1600px) {
        .w-l-75{
            width: 75% !important;
        }
}

@media only screen and (max-device-width: 990px) {
    .hide-m{
        display: none;
    }

    .show-m{
        display: block !important;
    }

    .logo{
        width: 200px !important;
    }

    .w-lm-50{
        width: 50% !important;
    }
}

@media only screen and (max-device-width: 767px) {
    .h-ms-auto{
        height: auto !important;
    }

    .w-ms-100{
        width:100% !important;
    }

    .mt-ms-5{
        margin-top: 3rem !important;
    }

    .card-h{
        height: 500px;
    }

    .img-h{
        height: 300px;
    }

    .d-ms-block{
        display: block !important;
    }

    .hide-ms{
        display: none;
    }
}

@media only screen and (min-device-width: 768px) {
    .hide-card{
        display: none
    }
}

@media only screen and (max-device-width: 400px) {
    .logo{
        width: 150px !important;
    }

    .w-s-100{
        width: 100% !important;
    }
}

