:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --link-color: #0066cc;
    --header-bg: #f0f0f0;
}

[data-theme="dark"] {
    --bg-color: #121212;
    --text-color: #f0f0f0;
    --link-color: #4dabf7;
    --header-bg: #1e1e1e;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

header {
    background-color: var(--header-bg);
    padding: 1rem;
    text-align: center;
}

nav {
    background-color: var(--header-bg);
    padding: 0.5rem;
    text-align: center;
}

nav a {
    color: var(--link-color);
    margin: 0 1rem;
    text-decoration: none;
}

main {
    padding: 2rem;
}

img {
    max-width: 100%;
    height: auto;
}

#theme-toggle {
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.menu-bar {
    background-color: var(--header-bg);
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    border-bottom: 1px solid #ccc;
}

.menu-bar a {
    color: var(--link-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.menu-bar a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.theme-dropdown {
    position: relative;
    display: inline-block;
    margin-left: auto;
}

.theme-button {
    background: none;
    color: var(--text-color);
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
}

.theme-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: var(--header-bg);
    min-width: 120px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
}

.theme-dropdown-content a {
    color: var(--text-color);
    padding: 8px 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.theme-dropdown-content a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.theme-dropdown:hover .theme-dropdown-content {
    display: block;
}

/* SVG icon styles */
.svg-icon {
    width: 16px;
    height: 16px;
    fill: var(--text-color);
}
/* Add to styles.css */
.content-container {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 2rem;
}

.content-image {
    flex: 0 0 30%;
    max-width: 30%;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.content-text {
    flex: 1;
}

.song-image img {
    width: 30%;
    height: auto;
    border-radius: 8px;
}

css
Copy

/* Custom horizontal rule */
hr {
    border: none;
    height: 2px;
    background-color: #333;
    margin: 2rem auto;
    width: 80%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

/* Dark theme adjustment */
[data-theme="dark"] hr {
    background-color: #555;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

