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

*/

/*the form contents*/

#amount {
    width: 40%;
    margin: 0 auto 5px auto;
    padding: 5px;
    float: left;
}

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

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

fieldset #sortLbl {
    float: left;
    margin-right: 10px;
}

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

#errorMsg {
    color: red;
    font-weight: bold;
    margin-top: 20px;
    font-style: italic;
/*    text-align: center;*/
}

/*content and individual sections*/

#content {
    display: flex;
    flex-wrap: wrap;
}

#theParts form {
    width: 100%;
    margin: 0px auto 20px auto;
}

#theParts {
    flex-direction: column;
    width: 100%;
    /*            background-color: aqua;*/
}

/*list of parts*/

#bodyParts,
#lyrics {
    text-align: center;
    width: 100%;
}

#bodyParts ul li {
    list-style: none;
}

#bodyParts ul li:first-child {
    font-weight: bold;
    color: #0A0;
}

/*lyric styles*/

#lyrics {
    text-align: center;
    margin-top: 20px;
    color: green;
    flex-direction: column;
    width: 100%;

}

#lyrics p span {
    font-size: 110%;
    font-weight: bold;
}

#refrain {
    color: brown;
    font-variant: small-caps;
}

/*media queries*/

@media (max-width: 400px) {
    #masthead h1 {
        font-size: 8vw;
    }
}

@media (min-width: 800px) {

    #content {
        width: 80%;
    }

    #theParts {
        display: table;
        background-color: antiquewhite;
        width: 100%;
        padding: 20px;
        border-radius: 20px;
        border: 2px solid black;
    }

    #theParts form {
        display: table-cell;
        width: 50%;
        margin-right: 50px;
        /*                background-color: darkkhaki;*/
    }

    #theParts #bodyParts {
        display: table-cell;
        width: 50%;
        /*                background-color: darkorange;*/
    }

    #lyrics {
        display: table-row;
        /*                background-color: yellow;*/
        width: 100%;
        font-size: 50px;
    }

    #lyrics p {
        margin-bottom: 35px;
        line-height: 1.2;
    }

    #bodyParts ul {
        -webkit-column-count: 3;
        /* Chrome, Safari, Opera */
        -moz-column-count: 3;
        /* Firefox */
        column-count: 3;
        -webkit-column-gap: 40px;
        /* Chrome, Safari, Opera */
        -moz-column-gap: 40px;
        /* Firefox */
        column-gap: 40px;

    }

    #hokeyPokeyIcon {
        display: block;
        position: relative;
        top: 40px;
        left: -50px;
        margin-top: -50px;
    }
}

/*end 800px media query*/
