/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

#nav {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    font-size: 20px;
    padding: 10px;
    border: 1px solid black;
    grid-area: nav;
    background-color: white;
}

#nav * {
    color: black;
    font-family: Arial, sans-serif;
}

#Logo {
    height: 75px;
}

a:link {
    color: black;
    text-decoration: none;
}

a:visited {
    color: black;
}

footer {
    padding: 10px;
    margin: 10px 10px;
    border: 1px solid black;
    border-radius: 5px;
    width: 30%;
    grid-area: footer;
}

#image1 {
    grid-area: image1;
}

#image2 {
    grid-area: image2;
}

#image3 {
    grid-area: image3;
}

#image4 {
    grid-area: image4;
}

#image5 {
    grid-area: image5;
}

#image6 {
    grid-area: image6;
}

#image7 {
    grid-area: image7;
}

#image8 {
    grid-area: image8;
}

#image9 {
    grid-area: image9;
}

#image10 {
    grid-area: image10;
}

#image11 {
    grid-area: image11;
}

#image12 {
    grid-area: image12;
}

#video1 {
    grid-area: video1;
    width: 50%;
    height: auto;
}

#video2 {
    grid-area: video2;
    width: 50%;
    height: auto;
}

.photos {
    width: 125px;
    height: 150px;
    overflow: hidden;
    margin: 10px auto;
    border-radius: 5px;
    transition:1s;
}
.photos:hover{
        width:200px;
        height:200px;
    }
#songvideo1{
    grid-area:songvideo1;
}
#songvideo2{
    grid-area:songvideo2;
}
#songvideo3{
    grid-area:songvideo3;
}
#songvideo4{
    grid-area:songvideo4;
}
#songvideo5{
    grid-area:songvideo5;
}
#songvideo6{
    grid-area:songvideo6;
}

#facebooklink{
    text-align:center;
}
.Redinformation::placeholder {
        color:red;
    }

@media only screen and (min-width: 411px) and (max-width: 1023px) {
    #gigmain{
        border:1px solid black;
        border-radius: 5px;
        margin:10px 10%;
        background-color: white;
        padding:10px;
    }
    #nextgigimg{
        width:100%;
    }
    #songmain{
        display:grid;
        grid-template-areas: 
        "songvideo1 songvideo2"
        "songvideo3 songvideo4"
        "songvideo5 songvideo6";
        border: 1px solid black;
        border-radius: 5px;
        background-color: white;
        margin: 10px 10%;
    }
    .songvideos{
        margin:auto;
        width:90%;
        height:90%;
    }

    body {
        background-image: url("Images/backgroundimage.jpg");
        background-size: 100%;
        background-attachment: fixed;
    }

    #picturemainhalf {
        display: grid;
        grid-template-areas:
            "image1 image2 image3 image4"
            "image5 image6 image7 image8"
            "image9 image10 image11 image12";
    }

    .photos{
        width:80px;
        height:100px;
        transition:1s;
    }
    .photos:hover{
        width:150px;
        height:150px;
    }
    #picturesmain {
        display: grid;
        grid-template-rows: 1fr 1fr;
        border: 1px solid black;
        border-radius: 5px;
        background-color: white;
        margin: 10px 10%;
    }
    video{
        margin:auto;
        width:80%;
    }
    #picturesmain * {
        color: black;
    }


    #contactmain {
        border: 1px solid black;
        border-radius: 5px;
        margin: 10px 10%;
        background-color:white;
    }

    .contactimages {
        margin: 10px;
        width: auto;
        height: 100px;
        margin: 10px auto;
        border-radius: 5px;
        border: 1px solid black;
    }

    #contacttexttitle {
        font-size: 25px;
        text-align: center;
        margin: 10px;
        grid-column: 1/span 2;

    }

    .contacttext {
        margin: 10px;
        text-align: center;
        font-size: 15px;
    }


    #contactinfo {
        display: grid;
        grid-template-rows: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }

    .information, .Redinformation {
        margin: 10px;
        padding: 2px;
        border-radius: 4px;
    }

    #ContactTitle {
        margin: 10px auto;
        font-size: 30px;
    }

    #message {
        height: 200px;
    }

    #contactform {
        display: flex;
        flex-direction: column;
        margin: 10px 10%;
    }

    #Submit {
        margin: 10px auto;
        width: 80px;
        height: 30px;

    }

    #paragraph {
        grid-area: paragraph;
    }

    #homemain {
        display: grid;
        grid-template-areas:
            "paragraph paragraph"
            "BandImage BandImage"
            "Jazz LogoMain";
        background-color: whitesmoke;
    }

    #homemain * {
        color: black;
    }



    #title {
        font-size: 30px;
        text-align: center;

    }

    .people {
        margin: 10px;
        padding: 10px;
        border: 1px solid black;
        border-radius: 5px;
        display: grid;
        grid-template-columns: 1fr 4fr;
        background-color:white;
    }

    .personimage {
        width: 100px;
        height: 100px;
        border-radius: 5px;
        border: black 1px solid;
        margin: 10px 5px;
        float: left;
    }

    .Name {
        font-size: 25px;
        text-align: center;
        padding: 5px;

    }

    .instrument {
        font-weight: bold;
        font-size: 17px;
    }

    .persondescription {
        font-size: 15px;
    }

    .persontext {
        margin: 10px;
        float: left;
    }

    .dropdown-content a {
        margin: 10px;
    }

    .dropbtn {
        display: none;
    }

    #homemain {
        border: 1px solid black;
        padding: 10px;
        margin: 10px 10%;
        grid-area: main;
        border-radius: 5px;
    }

    #nav {
        font-size: 15px;
    }

    body {
        grid-template-areas:
            "nav nav nav"
            "f main f";
        grid-template-columns: 1fr 1fr 1fr;
    }

    #bandImage {
        margin: 10px;
        width: 90%;
        height: auto;
        border: black 1px solid;
        border-radius: 5px;
        margin: auto;
        grid-area: BandImage;
    }

    #Jazz {
        margin: 10px;
        width: 60%;
        height: auto;
        border: solid 1px black;
        border-radius: 5px;
        grid-area: Jazz;
        margin: 10px auto;
    }

    #LogoMain {
        margin: 10px;
        width: 60%;
        height: auto;
        float: right;
        border: 1px solid black;
        border-radius: 5px;
        grid-area: LogoMain;
        margin: auto;
    }
}

@media only screen and (min-width: 1023px) {
    #homemain, #Aboutmain, body, #contactmain {
        background-image: url("Images/backgroundimage.jpg");
        background-size: 100%;  
        background-attachment: fixed;
    }
    #nextgigimg{
        width:90%;
        height:auto;
        border-radius: 5px;
        border:1px solid black;
        margin:5%;
    }
    #gigmain {
        margin:auto;
    }
    #songmain{
        display:grid;
        grid-template-areas: 
        "songvideo1 songvideo2"
        "songvideo3 songvideo4"
        "songvideo5 songvideo6";
        padding:10px;
    }
    .songvideos{
        margin:auto;
        width:90%;
        height:90%;
    }
    #picturesmain {
        display: grid;
        grid-template-columns: 1fr 1fr;

    }
    

    #picturemainhalf {
        display: grid;
        grid-template-areas:
            "image1 image2 image3 image4"
            "image5 image6 image7 image8"
            "image9 image10 image11 image12";
        height: auto;
        margin: 10px;
        background-color: white;
        border:1px solid black;
        border-radius: 5px;
    }

    #videohalf {
        display: flex;
        flex-direction: column;
        padding: 100px;
        background-color: white;
        border:1px solid black;
        border-radius: 5px;
        margin:10px;
    }

    #video1 {
        grid-area: video1;
    }

    #video2 {
        grid-area: video2;
    }



    #Submit {
        margin: 10px auto;
        width: 80px;
        height: 30px;

    }

    .information, .Redinformation {
        margin: 10px;
        padding: 2px;
        border-radius: 4px;
    }

    #ContactTitle {
        margin: 10px auto;
        font-size: 30px;
    }

    #message {
        height: 200px;
    }

    #contactmain {
        display: flex;
        flex-direction: row;
        background-color:white;
    }

    #contactform {
        border: 1px solid black;
        border-radius: 5px;
        margin: 10px;
        padding: 10px;
        width: 80%;
        display: flex;
        flex-direction: column;
        background-color: white;
    }

    .contactimages {
        margin: 10px;
        width: 30%;
        height: 100px;
        margin: 10px auto;
    }

    #contacttexttitle {
        font-size: 25px;
        text-align: center;
        margin: 10px;
        grid-column: 1/span 2;

    }

    .contacttext {
        margin: 10px;
        text-align: center;
        font-size: 20px;
    }

    #contactinfo {
        display: grid;
        grid-template-rows: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        border: 1px solid black;
        border-radius: 5px;
        margin: 10px;
        padding: 10px;
        width: 80%;
        background-color:white;
    }
    
    #title {
        font-size: 30px;
        text-align: center;
        padding: 10px;
        grid-area: title;
        
    }

    .people {
        margin: 10px;
        padding: 10px;
        border: 1px solid black;
        border-radius: 5px;
        display: grid;
        grid-template-columns: 1fr 2fr;
        background-color:white;
    }

    #MichaelRoberts {
        grid-area: Michael;
    }

    .personimage {
        width: 200px;
        height: 200px;
        border-radius: 5px;
        border: black 1px solid;
        margin: 10px 5px;
        float: left;
    }

    .Name {
        font-size: 25px;
        text-align: center;
        padding: 5px;

    }

    .instrument {
        font-weight: bold;
        font-size: 17px;
    }

    .persondescription {
        font-size: 15px;
    }

    .persontext {
        margin: 10px;
        float: right;
    }

    .dropdown-content a {
        margin: 20px;
    }

    .dropbtn {
        display: none;
    }

    #homemain {
        grid-area: homemain;
    }

    #bandImage {

        margin: 10px;
        grid-area: BandImage;
        border: black 1px solid;
        border-radius: 5px;
        height: auto;
        width: 90%;
    }

    #Jazz {
        margin: 10px;
        grid-area: Jazz;
        border: 1px solid black;
        border-radius: 5px;
        height: auto;
        width: 60%;
        margin: 10px auto;
    }

    #LogoMain {
        margin: 10px;
        grid-area: LogoMain;
        border: 1px solid black;
        border-radius: 5px;
        height: auto;
        width: 60%;
        margin: 10px auto;
    }

    #paragraph {
        grid-area: Text;
        width: 85%;
        height: auto;
        text-align: center;
        border: 1px solid black;
        border-radius: 5px;
        margin: 10px;
        background-color: white;
    }

    #HomeBody {
        display: grid;
        grid-template-areas:
            "nav nav"
            "homemain homemain"
            "footer footer";
        grid-template-columns: 1fr 1fr;
    }

    #AboutBody {
        display: grid;
        grid-template-areas:
            "nav nav"
            "Aboutmain Aboutmain"
            "footer footer";
        
    }


    #GregGorman {
        grid-area: GregGorman;
    }

    #JohnOvrebo {
        grid-area: JohnOvrebo;
    }

    #Jo-Ann {
        grid-area: JoAnn;
    }

    #LillianStreet {
        grid-area: Lillian;
    }

    #Melanie {
        grid-area: Melanie;
    }

    #Akuda {
        grid-area: Akuda;
    }

    #Miguel {
        grid-area: Miguel;
    }

    #Todd {
        grid-area: Todd;
    }

    #JohnLee {
        grid-area: John;
    }

    #Aboutmain {
        display: grid;
        grid-template-areas:
            "title title"
            "Michael GregGorman"
            "JohnOvrebo JoAnn"
            "Lillian Melanie"
            "Akuda Miguel"
            "Todd John";
        border: 1px solid black;
        background-color: white;
    }

    #Aboutmain * {
        color: black
    }

    #homemain {
        display: grid;
        grid-template-areas:
            "Text Jazz"
            "BandImage LogoMain";
        background-color: white;
    }

    #homemain * {
        color: black;
    }
}



@media only screen and (max-width: 410px) {
    #nextgigimg{
        width:125%;
        margin:10px;
    }
    #songmain{
        width:100%;
        display:flex;
        flex-direction:column;
    }
    .songvideos{
        width:105%;
        height:90%;
        padding:10px;
    }
    #videohalf{
        width:100%;
    }
    #picturemainhalf{
        display:grid;
       grid-template-areas: 
       "image1 image2 image3"
       "image4 image5 image6"
       "image7 image8 image9"
       "image10 image11 image12";
       width:100%;
    }
    .photos{
        width:75px;
        height:75px;
        transition: 1s;
    }
    .photos:hover{
        width:100px;
        height:100px;
    }
    .contactimages {
        margin: 10px;
        width: auto;
        height: 100px;
        margin: 10px auto;
        border-radius: 5px;
        border: 1px solid black;
    }
    video{
        width:100%;
    }

    #contacttexttitle {
        font-size: 25px;
        text-align: center;
        margin: 10px;
        grid-column: 1/span 2;

    }

    .contacttext {
        margin: 10px;
        text-align: center;
        font-size: 15px;
    }


    #contactinfo {
        display: grid;
        grid-template-rows: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }

    .information, .Redinformation {
        margin: 10px;
        padding: 2px;
        border-radius: 4px;
    }

    #ContactTitle {
        margin: 10px auto;
        font-size: 30px;
    }

    #message {
        height: 200px;
    }

    #contactform {
        display: flex;
        flex-direction: column;
        margin: 10px 10%;
    }

    #Submit {
        margin: 10px auto;
        width: 80px;
        height: 30px;

    }

    #title {
        font-size: 30px;
        text-align: center;
        padding: 10px;
        grid-area: title;
    }

    .people {
        margin: 10px;
        padding: 10px;
        border: 1px solid black;
        border-radius: 5px;
        display: flex;
        flex-direction: column;
        background-color: white;
    }

    .personimage {
        width: 90%;
        height: 90%;
        border-radius: 5px;
        border: black 1px solid;
        margin: auto;
        float: left;
    }

    .Name {
        font-size: 25px;
        text-align: center;
        padding: 5px;

    }

    .instrument {
        font-weight: bold;
        font-size: 17px;
    }

    .persondescription {
        font-size: 15px;
    }

    .persontext {
        margin: 10px;
        float: right;
    }

    .dropbtn {
        background-color: #4CAF50;
        color: white;
        padding: 16px;
        font-size: 16px;
        border: none;
        cursor: pointer;
    }

    .dropdown {
        position: relative;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        min-width: 200px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    }

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

    .dropdown-content a:hover {
        background-color: #f1f1f1;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .dropdown:hover .dropbtn {
        background-color: #3e8e41;
    }

    #nav {
        font-size: 15px;
    }

    #homemain {
        grid-area: homemain;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #bandImage {
        margin: 10px auto;
        grid-area: BandImage;
        border: black 1px solid;
        border-radius: 5px;
        height: auto;
        width: 90%;
    }

    #Jazz {
        grid-area: Jazz;
        border: 1px solid black;
        border-radius: 5px;
        height: auto;
        width: 90%;
        margin: 10px auto;
    }

    #LogoMain {
        grid-area: LogoMain;
        border: 1px solid black;
        border-radius: 5px;
        height: auto;
        width: 90%;
        margin: 10px auto;
    }

    #paragraph {
        grid-area: Text;
        width: 85%;
        height: auto;
        text-align: center;
        border: 1px solid black;
        border-radius: 5px;
        margin: 10px auto;
    }

    body {
        display: grid;
        grid-template-areas:
            "nav nav"
            "homemain homemain"
            "footer footer";
    }

    footer {
        width: 83%;
    }
}