body {
    font-family: Georgia, "Cambria", serif;
    line-height: 1.5em;
    margin: 0;
}

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

audio {
    width: 90%;
}

.artwork {
    max-width: 200px;
    margin: 0 auto;
    border-radius: 5px;
}

nav {
    background-color: #333;
    padding-bottom: 1em;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav li {
    margin: 0 10px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

section {
    padding: 20px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    max-width: 100%;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

footer li {
    margin: 0 10px;
}

footer a {
    color: #fff;
    text-decoration: none;
}




/* General styles for the podcast subscribe buttons */
.podcast-subscribe-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

ul.podcast-subscribe-buttons {
    list-style: none;
}

/* Base style for each subscribe button */
.subscribe-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s, box-shadow 0.3s;
    color: #fff;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Apple Button */
.subscribe-button.apple {
    background-color: #007aff; /* iTunes blue */
}

.subscribe-button.apple:hover {
    background-color: #005bb5;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Android Button */
.subscribe-button.android {
    background-color: #3ddc84; /* Android green */
}

.subscribe-button.android:hover {
    background-color: #3cba6e;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* YouTube Button */
.subscribe-button.youtube {
    background-color: #ff0000; /* YouTube red */
}

.subscribe-button.youtube:hover {
    background-color: #e60000;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* RSS Feed Button */
.subscribe-button.rss {
    background-color: #ff6600; /* RSS orange */
}

.subscribe-button.rss:hover {
    background-color: #cc5200;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Icon styles */
.subscribe-button i {
    margin-right: 10px;
    font-size: 20px;
}

/* Responsiveness for smaller screens */
@media screen and (max-width: 600px) {
    .podcast-subscribe-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.post-date {
    color: #333;
}

.audio-info {
    border: 1px solid gray;
    padding: 0.5em;
    margin-bottom: 1em;
}

.poetry {
    margin-top: -1em;
}

.reading {
    padding: 2em 10em;
    @media (max-width: 767px) {
        padding: 1em;
    }
}

iframe {
    max-width: 100%;
}

.remove-text {
    text-decoration: line-through;
    color: red;
}

.replacement-text {
    color: green;
}

.footnote-link {
  text-decoration: none;
}

.footnotes {
  margin-top: 20px; /* Add some space above the footnotes */
  font-size: 0.9em; /* Slightly smaller font size for footnotes */
}

.footnotes hr {
  border: 0;
  height: 1px;
  background: #ccc;
  margin-bottom: 10px;
}
