/*
File: beverageSongStyles.css
Site: TNT
Date: 08/08/19
Author: KLP
Comments:

*/

/*
https://css-tricks.com/snippets/css/simple-and-nice-blockquote-styling/
*/

body{
	font-size: 18px;
}

div#content {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

blockquote {
	margin: 5px 10px;
	padding: 3% 2%;
/*	background-color: #CFFFA8;*/
/*    background-color: #83ea67;*/
    background-color: #FEF5BC;
	border-left-width: 10px;
	border-left-style: solid;
	border-left-color: #144C87;
	width: 800px;
	height: 300px;
	overflow:scroll;
}

blockquote p{
	line-height: 25px;
	margin-bottom: 5px;
}

blockquote p span{
	display: inline-block;
	font-variant:small-caps;
	margin: 0px 10px;
	margin-right: 0px;
	font-style:italic;
	font-size: 110%;
	color:#FF4F2F;
}

blockquote:before {
	color: #FF4F2F;
	content: open-quote;
	font-size: 600%;
	line-height: 0.1em;
	margin-right: 0.25em;
	vertical-align: -0.4em;
	/*margin-top: 2%;*/
}

blockquote p:first-child{
	margin-top: 0px;
}

blockquote span em{
	margin-left: -10px;
	margin-top: 10px;
	font-style:oblique;
	font-weight: bold;
	font-size: 120%;
}

#beverages {
    width: 70%;
    margin: 0 auto 5px auto;
    padding: 10px;
}

#beverages input {
    margin-right: 10px;
    float: left;
}

#beverages p {
    line-height: .8;
}

input[type='number'] {
    width: 40px;
    margin-left: 10px;
    margin-bottom: 20px;
    text-align: right;
}

input[type='button'] {
    display: block;
}

form img {
    float: right;
    margin-top: -10px;
    width: 35%;
}

#lyrics {
    margin-top: 20px;
    width: 95%;
    margin: 20px auto 10px auto;
    padding-top: 40px;
}


@media (min-width: 800px) {
    /*blue*/
    #content {
        display: table;
    }

    form {
        display: table-cell;
        width: 40%;

    }

    #spacer {
        display: table-cell;
        width: 3%;
    }

    #lyrics {
        display: table-cell;
        width: 60%;
    }

}

@media (min-width: 1000px) {
    /*green*/
    #bigContent p {
        font-size: 20px;
    }

}


