body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
}

header {
    background: linear-gradient(to right, #ff0080, #ff8c00);
    padding: 20px 10px;
    text-align: center;
    position: relative;
}

header h1 {
    margin: 0;
    font-size: 3em;
    font-weight: bold;
}

header p {
    margin: 0;
    font-size: 1.2em;
    font-style: italic;
}

header .logo {
    width: 50%;
    height: auto;
    margin-bottom: 10px;
}

/* Language Switcher Styles */
.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1em;
}

.language-switcher a {
    color: #ffffff;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.language-switcher a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.language-switcher a.active {
    background-color: rgba(255, 255, 255, 0.3);
    font-weight: bold;
}

nav {
    text-align: center;
    padding: 15px 0;
    background-color: #1f1f1f;
}

nav a {
    color: #ffffff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ff8c00;
}

.container {
    padding: 20px;
    max-width: 1000px;
    margin: auto;
}

.about-me {
    margin-bottom: 40px;
}

.about-me h2,
.music h2 {
    border-bottom: 3px solid #ff8c00;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.about-me p {
    font-size: 1.2em;
}

.music {
    margin-bottom: 40px;
}

.music iframe {
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
}

.music a {
    color: #00BFFF;
    text-decoration: none;
}

.music a:hover {
    color: #1E90FF;
    text-decoration: underline;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    margin-bottom: 10px;
}

footer {
    position: relative;
    text-align: center;
    padding: 20px 0;
    background-color: #1f1f1f;
    color: #ffffff;
    font-size: 0.9em;
}

.impressum-link {
    color: #00BFFF;
    text-decoration: none;
}

.impressum-link:hover {
    color: #1E90FF;
    text-decoration: underline;
}

/* Back link styles */
.back-link {
    color: #00BFFF;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #1E90FF;
    text-decoration: underline;
}

/* Mobile responsiveness for language switcher */
@media (max-width: 768px) {
    .language-switcher {
        position: static;
        margin-top: 10px;
    }
    
    header .logo {
        width: 80%;
    }
    
    header h1 {
        font-size: 2em;
    }
}