/**
 * Colors:
 *
 * black: #020000
 * red: #ed1c24
 */
@font-face {
    font-family: 'br';
    src: url('/css/font/brn.woff2') format('woff2'),
         url('/css/font/brn.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'br2';
    src: url('/css/font/br2.woff2') format('woff2'),
         url('/css/font/br2.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap');

html, body {
    color: white;
    font-family: 'br';
    color: #020000;
}

#br-navbar {
    font-size: 2em;
    padding: 0;
}

.navbar-brand {
    font-size: 2em;
}

@media only screen and (max-width: 1100px) {
    .navbar-brand {
        font-size:1em;
    }
}


section > .row > .col {
    height: 100vh;
    display: flex;
    /*
    justify-content: center;
    align-content: center;
    align-items: center;
    */
}

section#br1 {
    background-image: url('/image/br_cover.jpg');
    background-size: cover;
    background-position: center;
    text-rendering: optimizeLegibility;
}

section#br1 > .row > .col {
    align-content: center;
    align-items: center;
}

/**
 * Section 1
 */
.br-front-wrapper {
    padding-left: 50vh;
}

.br-name {
    font-size: 3em;
    font-weight: bold;
}

.br-title {
    font-family: 'br2';
    font-size: 5em;
}

.br-title .br-red {
    color: #ed1c24;
}

@media only screen and (max-width: 1100px) {
    section#br1 {
        background-image: none;
        justify-content: center;
        align-content: center;
        align-items: center;
    }

    .br-front-wrapper {
        padding-left: 0;
    }

    .br-front-wrapper .br-name {
        text-align: center;
    }

    .br-front-wrapper .br-title {
        text-align: center;
    }
}

@media only screen and (max-width: 1900px) {
    .br-front-wrapper {
        padding-left: 30vh;
    }
}

@media only screen and (max-width: 1550px) {
    .br-front-wrapper {
        padding-left: 0vh;
    }
}

/**
 * Section 2
 */
section#br2 {
    background-color: #020000;
    color: white;
}

section#br2 > .row > .col {
    justify-content: center;
}

#br-carousel {
    margin-top: 5vh;
    margin-left: 20vh;
    margin-right: 20vh;
    margin-bottom: 0vh;
    width: 100%;
    overflow-x: none;
    overflow-y: auto;
}

/**
 * Songs
 */
song {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}

song h1 {
    font-size: 4em;
    font-weight: bold;
    margin-top: 30px;
}

song author {
    display: block;
    font-size: 1em;
    padding-left: 50vh;
    font-style: italic;
}

song lyrics {
    font-size: 1.5em;
}

song lyrics stanza {
    padding-top: 10px;
    padding-buttom: 10px;
}

song lyrics chorus {
    padding-top: 25px;
    padding-bottom: 25px;
    display: block;
    font-weight: bold;
}

@media only screen and (max-width: 1100px) {
    #br-carousel {
        margin-top: 10px;
        margin: 2px;
    }
    song {
        width: 95%;
    }
    song author {
        padding: 0;
    }

    song lyrics stanza {
        padding-top: 2px;
        padding-buttom: 2px;
    }

    song lyrics chorus {
        padding-top: 5px;
        padding-bottom: 5px;
        display: block;
        font-weight: bold;
    }
}

/**
 * Section 3
 */
section#br3 {
    background-color: #ed1c24;
}

section#br3 > .row > .col {
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

form {
    font-size: 3em;
    width: 90%;
}

form .form-control {
    font-size: 1.5em;
}

@media only screen and (max-width: 1100px) {

    form {
        font-size: 2em;
        width: 90%;
    }

    form .form-control {
        font-size: 1em;
    }

}

.br-alert {
    font-size: 2.5em;
}

/**
 * Footer
 */
footer {
    font-size: 1.5em;
}

footer div.col {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}