/*This sets the background color for our comic page*/

html body {
    background-color: #454B1B;
}


/*These IDs are for the invisible divs that will hold our comic together*/

#page {
    height: 3000px; 
    width: 800px;
    margin-right: auto;
    margin-left: auto;
}


#titleblock {
    height: 160px; 
    width: 800px;
    padding-left: 10px;
}


/*These are the text styles for the headline and byline*/

h1 {
    font-family: "Comic Sans MS";
    font-style: italic;
    font-weight: 900;
    font-size: 45px;
    color: white;
}

h2 {
    font-family: "Comic Sans MS";
    font-style: italic;
    font-weight: 900;
    font-size: 16px;
    color: white;
}

/*These IDs are for the panels that will make up our comic.*/

#panel1 {
    position:relative;
    height: 280px;
    width: 780px;
    border:10px solid #2b2b2b;
    float: left;
    background-color: white;
    overflow: hidden;
}

#panel2 {
    position:relative;
    height: 280px;
    width: 380px;
    border:10px solid #2b2b2b;
    float: left;
    background-color: white;
    overflow: hidden;
}

#panel3 {
    position:relative;
    height: 280px;
    width: 380px;
    border:10px solid #2b2b2b;
    float: left;
    background-color: white;
    overflow: hidden;
}

#panel4 {
    position:relative;
    height: 170px;
    width: 320px;
    border:10px solid #2b2b2b;
    float: left;
    background-color: white;
    overflow: hidden;
}

#panel5 {
    position:relative;
    height: 170px;
    width: 280px;
    border:10px solid #2b2b2b;
    float: left;
    background-color: gray;
    overflow: hidden;
}
#panel6 {
    position:relative;
    height: 300px;
    width: 786px;
    border:7px solid #2b2b2b;
    float: left;
    background-color: white;
    overflow: hidden;
}
#panel7
{
   position:relative;
    height: 170px;
    width: 280px;
    border:10px solid #2b2b2b;
    float: left;
    background-color: gray;
    overflow: hidden;
  
}
#panel8 {
    position:relative;
    height: 280px;
    width: 480px;
    border:10px solid #2b2b2b;
    float: left;
    background-color: white;
    overflow: hidden;
}
#panel9 {
    position:relative;
    height: 280px;
    width: 785px;
    border:10px solid #2b2b2b;
    float: left;
    background-color: white;
    overflow: hidden;
}
#panel10 {
     position:relative;
    height: 170px;
    width: 380px;
    border:10px solid #2b2b2b;
    float: left;
    background-color: gray;
    overflow: hidden;
}
#panel11 {
     position:relative;
    height: 180px;
    width: 150px;
    border:10px solid #2b2b2b;
    float: left;
    background-color: gray;
    overflow: hidden;
}
#panel12{ position:relative;
    height: 180px;
    width: 380px;
    border:10px solid #2b2b2b;
    float: left;
    background-color: white;
    overflow: hidden;
}
#panel13{ position:relative;
    height: 180px;
    width: 210px;
    border:10px solid #2b2b2b;
    float: left;
    background-color: white;
    overflow: hidden;
}
#panel14{ position:relative;
    height: 180px;
    width: 180px;
    border:10px solid #2b2b2b;
    float: left;
    background-color: white;
    overflow: hidden;
}
#panel15 {
    position:relative;
    height: 180px;
    width: 580px;
    border:10px solid #2b2b2b;
    float: left;
    background-color: white;
    overflow: hidden;
}
#panel16 {
     position:relative;
    height: 180px;
    width: 250px;
    border:10px solid #2b2b2b;
    float: left;
    background-color: #027829;
    overflow: hidden;
}
#panel17 {
     position:relative;
    height: 180px;
    width: 510px;
    border:10px solid #2b2b2b;
    float: left;
    background-color: gray;
    overflow: hidden;
}

#panel18 {
     position:relative;
    height: 300px;
    width: 780px;
    border:10px solid #2b2b2b;
    float: left;
    background-color: white;
    overflow: hidden;
}

#panel19 {
     position:relative;
    height: 300px;
    width: 246px;
    border:10px solid #2b2b2b;
    float: left;
    background-color: gray;
    overflow: hidden;
}

#panel20 {
     position:relative;
    height: 80px;
    width: 780px;
    border:10px solid #2b2b2b;
    float: left;
    background-color: #027829;
    overflow: hidden;
}

#panel21 {
     position:relative;
    height: 170px;
    width: 140px;
    border:10px solid #2b2b2b;
    float: left;
    background-color: #027829;
    overflow: hidden;
}
/*These classes are for the different text styles we will be using in the comic*/

.narration {
    font-family: "Comic Sans MS";
    font-style: italic;
    font-weight: 900;
    font-size: 15px;
    padding: 15px;
    color: white;
    margin: 10px;
    background-color: #2b2b2b;
  
}

.bigtext {
    font-family: "Comic Sans MS";
    color: white;
    font-style: italic;
    font-weight: 900;
    font-size: 30px;
    line-height: 100%;
    margin: 20px;
    text-shadow:2px 2px #2b2b2b;
}

/* These classes can position text and images within the panel.*/

.left {
    position:absolute;
    left: 0;
}

.right {
    position:absolute;
    right: 0;
}

.top {
    position:absolute;
    top: 0;
}

.bottom {
    position:absolute;
    bottom: 0;
}

  
/*These ids can be used to fit specific images into our panels*/

#image1 {
    position: absolute;
    width:100%;
    height: 300px;
}

#image2 {
    position: absolute;
    height:350px;
  	width:100%;
}

#image3 {
    position: absolute;
  height: 300px;
    width:100%;
}

#image4 {
    position: absolute;
  height:200px;
    width:100%;
   
}

#image5 {
    position: absolute;
    height:100%;
    left:-30px;    
}
#image6 {
   position: absolute;
    height:100px;
  	width: 280px;
       
}
#image7 {
   position: absolute;
    height:100%;
  	width: 100%;
       
}
#image8 {
   position: absolute;
    height:100%;
  	width: 100%;
       
}
#image9 {
   position: absolute;
    height:100%;
  	width: 100%;
       
}
#image10 {
   position: absolute;
    height:250px;
  	width: 100%;
       
}
/*These classes are for stacking or ordering elements on top of eachother.*/

.inback {
    z-index: 1;
}

.inmiddle {
    z-index: 2;
}

.infront{
    z-index: 3;
}

