* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #ffffff;
    color: #222222;
    font-family: Arial, Helvetica, sans-serif;
}

/* Header */

.top-bar {
    height: 55px;
    background: #111111;
    display: flex;
    align-items: center;
}

.header-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

/* Main container */

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

/* Breadcrumb */

.breadcrumb {
    display: flex;
    gap: 7px;
    align-items: center;

    margin-bottom: 30px;

    color: #888888;
    font-size: 14px;
}

.breadcrumb a {
    color: #555555;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Song header */

.song-header {
    text-align: center;
    margin-bottom: 35px;
}

.song-title {
    margin: 0 0 8px;

    color: #111111;
    font-size: 32px;
    font-weight: bold;
}

.artist {
    margin: 0;

    color: #555555;
    font-size: 20px;
}

.artist a {
    color: #333333;
    text-decoration: none;
}

.artist a:hover {
    text-decoration: underline;
}

/* Lyrics */

.lyrics {
    max-width: 700px;
    margin: 0 auto;

    color: #222222;
    font-size: 17px;
    line-height: 1.7;

    /*
     * Preserves newlines from song.lyrics
     * when using a normal Python string.
     */
    white-space: pre-line;
}

/* Footer */

.footer {
    max-width: 700px;
    margin: 60px auto 0;

    padding-top: 20px;

    border-top: 1px solid #dddddd;

    color: #888888;
    font-size: 13px;
    text-align: center;
}

/* Mobile */

@media (max-width: 600px) {

    .header-container {
        padding: 0 15px;
    }

    .container {
        padding: 25px 15px 50px;
    }

    .song-title {
        font-size: 26px;
    }

    .artist {
        font-size: 18px;
    }

    .lyrics {
        font-size: 16px;
        line-height: 1.65;
    }

    .breadcrumb {
        font-size: 13px;
        flex-wrap: wrap;
    }
}
