.hidden {
    display: none;
}

error-message {
    color: red;
}

/* Headers */

header {
    min-height: 200px;
    padding: 50px 20px;
    background-image: url(images/concert-background.jpg);
    background-size: 150%;
    background-position: 0px 100px;
    color: white;
}

h1, h2, h3 {
    text-align: center;
    font-family: 'Pacifico', cursive;
      
}

/* Link Styling */

html {
    height: 100%;
}

a:link {
    color: white;
    text-decoration: none;
}

a:hover {
    color: lightgray;
}

a:active {
    color: gray;
}

a:visited {
    color: white;
}

/* Video Embed */

iframe {
    display: block;
    margin: 0 auto;
}

/* Results */

body {
    background-image: url(images/results-background.jpg);
    background-size: cover; 
    background-repeat: no-repeat;
    height: 100%;
    color: white;
    background-attachment: fixed;
}

.js-lyrics {
    padding: 10px;
}


/* Shadow Class for Text */

.shadow {
    text-shadow: 1px 1px #000000,
    2px 2px #000000,
    3px 3px #000000,
    4px 4px #000000;
    color: white
    font: 'Roboto', sans-serif;
}

p {
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

form {
    font-family: 'Roboto', sans-serif;
}

label{
    font-family: 'Pacifico', cursive;
}

pre {
    text-align: center;
    font-family: 'Lato', sans-serif;
}

form {
    text-align: center;
    max-width: 200px; 
    margin: 0 auto;
    padding: 10px;
}

.submit-button {
    width: 100%;
    padding: 10px;
}

.container {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    justify-content: space-around;
    align-content: space-around;
}


/* Media Queries */

/* Tablet */

@media(min-width: 600px){
    header{
        background-position: 0px 400px;
    }

    .container {
        flex-direction: column;
    }
}

/* Desktop - Standard*/

@media(min-width: 1100px){
    header {
        background-size: cover;
        background-position: 0px 500px;
    }

    .container {
        display: flex;
        flex-direction: row;
    }

    .results {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
}

/* Desktop - Widescreen */

@media(min-width: 2000px){
    header {
        background-size: cover;
        background-position: 0px 700px;
    }

    .container {
        flex-direction: row;
    }
}

