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

/* Body styling */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000;
    color: #ffffff;
}

/* Home page */
.home-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.band-name {
    color: #fff85d;
    font-size: 4rem;
    letter-spacing: 2px;
}

.subtitle {
    margin-top: 10px;
    font-size: 1.2rem;
    opacity: 0.85;
}

/* Navigation */
nav {
    margin-top: 30px;
}

nav a {
    color: #fff85d;
    text-decoration: none;
    font-size: 1rem;
}

nav a:hover {
    text-decoration: underline;
}

/* Lyrics page */
.lyrics-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.lyrics-content {
    margin-top: 40px;
}

.song-title {
    color: #fff85d;
    margin-bottom: 20px;
}

.lyrics-text {
    white-space: pre-wrap;
    line-height: 1.6;
    font-size: 1rem;
}
