* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    overflow-x: hidden;
}

body {
    font-family: 'PP Neue Montreal', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1 0 auto;
}

header {
    background-color: #000;
}

header img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.description {
    width: 90%;
    padding: 20px;
    font-size: 1.2em;
    background-color: #000;
    display: flex;
    flex-direction: column; /* Cambia a colonna per disporre gli elementi verticalmente */
    justify-content: center; /* Centra orizzontalmente */
    align-items: center; /* Centra verticalmente */
    color: #FFF;
    font-weight: 500;
    border-radius: 1%;
    width: 80%; /* Imposta la larghezza al 80% */
    margin: 0 auto; /* Centra il box nella pagina */
    text-align: center; /* Centra il testo all'interno degli elementi */
}

.description p {
    text-align: justify; 
}

.description .ascolta {
    text-align: center;
    margin: 20px 0; /* Aggiunge margine verticale */
}

.video-embed {
    margin: 20px auto; /* auto sui lati orizzontali centra l’elemento */
    flex-shrink: 0;
    position: relative;
    text-align: center;
    background-color: #000;
    display: inline-block; /* oppure block, a seconda del contenuto */
}

.podcatchers {
    margin-top: 20px; /* Assicura uno spazio sopra il blocco podcatchers */
    display: flex; /* Usa flex per disporre i link in una riga */
    justify-content: center; /* Centra orizzontalmente */
    flex-wrap: wrap; /* Permette ai link di andare a capo se necessario */
}

.podcatchers a {
    margin: 0 10px;
}

.podcatchers img {
    width: 50px;
    height: auto;
    background-color: #fff;
    border-radius: 50%;
}

.host-info {
    display: flex;
    flex-direction: row; /* Dispone gli elementi in una riga */
    justify-content: center; /* Centra orizzontalmente */
    align-items: center; /* Centra verticalmente */
    background-color: #131313;
    color: white;
    padding: 20px;
    font-weight: 500;
    border-radius: 1%;
    flex-wrap: wrap;
    width: 80%; /* Imposta la larghezza al 80% */
    margin: 0 auto; /* Centra il box nella pagina */
    text-align: center; /* Centra il testo all'interno degli elementi */
}

.host-info p {
    flex: 1;
    margin: 0;
    text-align: left;
}

.host-info img {
    border-radius: 50%;
    width: 100px;
    height: auto;
    margin-left: 40px;
}




footer {
    flex-shrink: 0;
    position: relative;
    text-align: center;
    padding: 80px;
    background-color: #000;
}

footer img {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    max-width: 600px;
    padding-top: 0px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .description h1 {
        font-size: 2em;
    }

    .description h2 {
        font-size: 1.2em;
    }

    .description p {
        font-size: 1.1em;
    }

    .podcatchers img {
        width: 50px;
    }

    footer img{
        padding: 0px;
        bottom: 0px;
    }
}

@media (max-width: 480px) {
    .description h1 {
        font-size: 1.5em;
    }

    .description h2 {
        font-size: 1.2em;
    }

    .description p {
        font-size: 1.1em;
    }

    .podcatchers img {
        width: 50px;
    }

    .host-info img {
        width: 80px;
    }

    footer img{
        padding: 0px;
        bottom: 10px;
    }
}

