header {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #e2e2e2 0%, #CF9FFF 4%, #CF9FFF 96%, #e2e2e2 100%)    
}
body {
    margin: 0;
    background-color: #F3E5FF;
    
}
.Header_Title {
    width: 221.77px;
    height: 64.63px;
    text-align: center;
    font-size: small;
    font-family: Georgia, 'Times New Roman', Times, serif
}
.Header_Image {
    transform: scale(1.1);
}
.subheader a {
    display: block;
    color: black;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}
.subheader {
    display: flex;
    justify-content: space-evenly;
    background: linear-gradient(to right, #e2e2e2 0%,  #DBB8FF 4%, #DBB8FF 96%, #e2e2e2 100%);    
    border-bottom: 2px solid black;
    border-top: 2px solid black;
}
.about h1{
    text-align: center;;
}
.about img {
    display: block;
    margin: 20px auto;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
}
.about-paragraph {
    text-align: justify;
    max-width: 1000px;
    margin: auto;
    font-size: larger;
    margin-top: 0px; 
    margin-bottom: 20px;
}

.about-list {
    text-align: justify;
    max-width: 1000px;
    margin: auto;
    font-size: larger;
    margin-top: 0px; 
    margin-bottom: 20px;
}

.Podcast_Card {
    display: grid;
    gap: 30px;
    padding: 10px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.Podcast_Card > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Podcast_Card iframe {
    width: 100%;
    height: 232px;
    border: none;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 5px;
        text-align: center;
    }

    .Header_Image {
        transform: scale(1);
        margin-bottom: 10px;
    }

    .Header_Title {
        width: auto;
        height: auto;
        font-size: medium;
    }

    .subheader {
        display: flex;
        justify-content: space-around;
        padding: 5px 0;       
    }

    .subheader a {
        font-size: 14px;
        padding: 5px;
        display: inline;
    }

    .about img {
        display: block;
        margin: 20px auto;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        object-fit: cover;
    }

    .about-paragraph {
        padding: 0 15px;
        font-size: medium;
    }

    .about-list {
    padding-left: 25px;
    margin: 10px 15px;
    }

    .about-list li {
    margin-bottom: 8px;
    font-size: medium;
    }

    .Podcast_Card {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .Podcast_Card iframe {
        width: 100%;
        aspect-ratio: 1 / 1;
        border: none;
        border-radius: 12px;
        box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
    }
}


