* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0b0f19;
    color: #ffffff;
    font-family: system-ui, -apple-system, sans-serif;
    /* Richtet alles vertikal untereinander in der Bildschirmmitte aus */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow: hidden;
    margin: 0;
    background-image:url('evening-sky.png');
    background-attachment:fixed;
    background-repeat: no-repeat;
    background-size: cover;
    backdrop-filter: blur(30px);
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.1rem;
    color: #94a3b8;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

a {
    display: inline-block;
    color: #e2e8f0;
    text-decoration: none;
    background-color: #1e293b;
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid #334155;
    font-size: 0.95rem;
    
    /* Abstände zwischen den Links */
    margin: 4px;
    
    /* Sanfter Hover-Effekt */
    transition: all 0.2s ease;
}

.links {
    display: flex;
    flex-direction: row; /* Ordnet die Elemente nebeneinander an */
    gap: 12px;           /* Abstand zwischen den Links */
    justify-content: center; /* Zentriert die Reihe */
    flex-wrap: wrap;     /* Bricht auf kleinen Handys sauber um */
}

a:hover {
    background-color: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
}

.music-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.song-info {
    position: fixed;
    bottom: 20px;
    right: 20px;
    
    display: flex;
    align-items: center; /* Richtet Text und Bild auf gleicher Höhe aus */
    gap: 12px;           /* Abstand zwischen Text und Cover */
}

.song-cover {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
}

.song-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.song-title {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
}

.song-artist {
    color: #94a3b8;
    font-size: 0.75rem;
}