body {
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    background-color: #1e1e1e;
    padding: 10px;
    border-bottom: 1px solid #333;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center; /* Center content horizontally */
}

.header-container {
    max-width: 1200px; /* Adjust as needed */
    width: 100%;
    padding: 0 10px; /* Padding inside the container */
    box-sizing: border-box; /* Ensure padding and border are included in width/height calculations */
}

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: right; /* Center items in the navigation */
    gap: 10px;
    padding: 0;
}

/* Navigation links and buttons */
nav a,
nav button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    white-space: nowrap;
}

nav a:hover,
nav button:hover {
    background-color: #333;
}

.container {
    position: relative;
    padding: 20px;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
}

.container p {
    line-height: 1.5;
    font-family: Arial, sans-serif;
}

section {
    margin-bottom: 20px;
}

h2 {
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.download-links a {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
}

.email-button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#song-list ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#song-list li {
    margin: 0;
}

#linklist {
    margin: 0;
}

#linklist a {
    padding: 50px;
}

.song-button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    margin: 5px 0;
}

.song-button:hover {
    background-color: #333;
}

#lyrics-container {
    margin-top: 20px;
}

.nav-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.nav-buttons button,
#back-button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
}

.nav-buttons button:hover,
#back-button:hover {
    background-color: #333;
}

pre {
    white-space: pre-wrap;
    font-size: 18px;
    line-height: 1.6;
    color: #e0e0e0;
    font-family: 'Courier New', Courier, monospace;
    padding: 0;
}

footer {
    background-color: #1e1e1e;
    padding: 10px;
    border-top: 1px solid #333;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center; /* Center content horizontally */
    text-align: center;
}

.footer-container {
    max-width: 1200px; /* Adjust as needed */
    width: 100%;
    padding: 0 10px; /* Padding inside the container */
    box-sizing: border-box; /* Ensure padding and border are included in width/height calculations */
}

/* Profile links styles */
.profile-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: left; /* Center items in the footer */
    gap: 10px;
}

/* Profile links and buttons */
.profile-links a,
.profile-links button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    white-space: nowrap;
    box-sizing: border-box;
}

.profile-links a:hover,
.profile-links button:hover {
    background-color: #333;
}

.download-links {
    display: flex;
    justify-content: left;
    gap: 10px;
    margin-top: 0;
    font-family: Arial, sans-serif;
}

.download-links .donate {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: skyblue;
    border: 1px solid white;
    padding: 10px 20px;
}

.download-links .termsofuse {
    color: lightgreen;
    border: 1px solid white;
    padding: 10px 20px;
}

.download-links .termsofuse:hover, .download-links .donate:hover {
    background-color: #333;
}
