body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f9;
    color: #333;
}

header {
    background-color: #1d3557;
    color: #fff;
    padding: 20px;
    text-align: center;
}

nav {
    background-color: #fffdf1;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #a8dadc;
}

.hero {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: white;
    padding: 40px 20px;
    background-color: #008037;
    border-radius: 10px;
}

.hero img {
    max-width: 100%;
    max-height: 250px;
    border-radius: 10px;
}

.hero-text {
    text-align: center;
}

h2 {
    font-size: 1.4rem;
}

.rss-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.rss-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.rss-item audio {
    width: 100%;
    margin-top: 10px;
    appearance: none;
    background-color: #1d3557;
    height: 40px;
    border-radius: 5px;
    outline: none;
}

.rss-item audio::-webkit-media-controls-panel {
    background-color: #1d3557;
    color: white;
    border-radius: 5px;
}

.rss-item audio::-webkit-media-controls-play-button,
.rss-item audio::-webkit-media-controls-timeline,
.rss-item audio::-webkit-media-controls-current-time-display,
.rss-item audio::-webkit-media-controls-time-remaining-display {
    color: white;
}

footer {
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}

footer a {
    color: #a8dadc;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
}

#episodes {
    padding: 20px 0px 0px 0px;
}

.hero-text h1 {
    font-size: 3.5rem;
}


.hero-text p {
    text-align: left;
}