/* Custom CSS for Christmas Lyric Site */

/* Background */
body {
    background: #ffffff; /* Plain white background */
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    line-height: 2.2;
    color: #333
}

h1,
h2,
h3,
footer {
    font-family: 'Trebuchet MS', sans-serif;
}

.song-list {
    font-size: 1.125rem; /* Slightly larger font size for the song list */
}

/* Buttons */
.btn-primary {
    background-color: #228b22; /* Tree green */
    border-color: #228b22;
}

/* Footer */
.footer {
    background-color: #228b22; /* Tree green */
    color: #fff;
    margin-top: 20px;
}

/* Add spacing between paragraphs, excluding footer */
body p:not(.footer p) {
  margin-bottom: 2rem;
}