.section-heading{
    text-align: center;
}
.home-section{
    margin: 50px 0;
}
.home-banner{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(/images/home-banner.jpeg);
    background-size: cover;
    background-attachment: fixed;
}
.home-logo-container{
    width: 300px;
}
.recent-episodes{
    padding: 30px 0;
}
.recent-episodes-container{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    min-height: 50vh;
}
.episode-item{
    position: relative;
    min-width: 300px;
    max-width: 900px;
    margin: 20px;
    background: black;
    color: white;
}
.episode-info{
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background: rgba(0,0,0,0.5);
}

.resources-container{
    display: grid;
    justify-content: center;
    padding: 50px 0;
    background-image: url(/images/skyscraper-grey.jpeg);
    background-attachment: fixed;
    background-size: cover;
}
.resource-item-container{
    background: rgba(0,0,0,0.3);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}
.resource-item{
    position: relative;
    width: 300px;
    margin: 10px;
}
.resource-heading{
    position: absolute;
    bottom: 0;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin: 0;
    height: 60px;
    width: 100%;
    background: rgba(0,0,0,0.5);
}

@media(min-width: 900px){
    .episode-item{
        width: 400px;
    }
}