@import url('https://fonts.googleapis.com/css2?family=Proza+Libre:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --accent: #B24632;
    --primary-dark: #09294F;
    --primary: #174173;
    --primary-light: #678CB9;
}

a, a::selection, a:visited {
    color: var(--accent)
}

body {
    margin: 0;
    font-family: 'Proza Libre', sans-serif;
}

main {
    margin: 0 auto;
    max-width: 1040px;
    padding: 0 20px;
}

#main-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 140px;
    background-color: var(--primary);
    border-bottom: 3px solid var(--primary-dark);
}

#page-title {
    color: #fafafa;
    font-size: 30.5pt;
    text-transform: uppercase;
    font-weight: bold;
}

#page-subtitle {
    color: #fafafa;
    font-size: 15pt;
}

#link-pagination a {
    display: inline-block;
    width: 1em;
    text-align: center;
    padding: .5em;
    text-decoration: none;
    font-weight: bold;
    color: white;
}
#link-pagination a:hover {
    background-color: var(--primary-dark);
    color: white;
}

#link-pagination-wrapper {
    text-align: center;
    background-color: var(--primary-light);
}

#lyrics-container {
    display: flex;
    width: 100%;
}
.lyrics-fill {
    flex-grow: 1000;
}
#lyrics {
    display: flex;
    flex-grow: 1;
    flex-flow: column;
    margin: 0 auto;
    width: auto;
}
.lyrics-verse {
    display: inline-block;
    margin-bottom: 1em;
    margin-top: .5em;
}

.lyrics-verse u {
    text-decoration-thickness: 2px;
    text-decoration-color: var(--accent);
}

#top-menu {
    display: flex;
    justify-content: center;
    background-color: var(--primary-dark);
    border-bottom: 3px solid var(--primary-dark);
    padding: 10px;
    color: white;
}

#top-menu a {
    color: white;
    padding: 0 .5em;
}

.lyrics-note {
    font-style: italic;
}