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

html body {
    background-color: #264027;
  	color: white;
  	height: 1500px;
}


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

#page {
    height: 100%; 
    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: "Sunshiney";
    font-style: italic;
    font-weight: 900;
    font-size: 60px;
  	position:absolute;
  	left: 370px;
}

h2 {
    font-family: "Sunshiney";
    font-style: italic;
    font-weight: 900;
    font-size: 25px;
  	position:absolute;
    right: 300px;
  	position:absolute;
    bottom: 0;
}

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

#panel1 {
    position:relative;
    height: 280px;
    width: 780px;
    border:10px solid #264027;
}

#panel2 {
    position:relative;
    height: 280px;
    width: 380px;
    border:10px solid #264027;
    float: left;
    overflow: hidden;
}

#panel3 {
    position:relative;
    height: 280px;
    width: 380px;
    border:10px solid #264027;
    float: left;
    overflow: hidden;
}

#panel4 {
    position:relative;
    height: 280px;
    width: 280px;
    border:10px solid #264027;
    float: left;
    overflow: hidden;
}

#panel5 {
    position:relative;
    height: 280px;
    width: 480px;
    border:10px solid #264027;
    float: left;
    overflow: hidden;
}

#panel6 {
    position:relative;
    height: 450px;
    width: 450px;
    border:10px solid #264027;
  	float: left;
    overflow: hidden;
}

#panel7 {
  position: relative;
  float: right;
  height: 280px;
  width: 380px;
}

/*These classes are for the different text styles we will be using in the comic*/

.narration {
    font-family: "Winky Sans";
    font-style: italic;
    font-size: 16px;
    padding: 15px;
    color: white;
    margin: 10px;
    background-color: #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 fit specific images into our panels based on the dimensions of the image*/

#image1 {
    position: absolute;
  	left: 40px;
  	bottom: 2px;
  	width: 700px;
  	height: 270px;
}

#image2 {
  position: absolute;
  height: 280px;
  width: 480px;
}

#image3 {
  position: aboslute;
  height: 280px;
  width: 380px;
}

#image4 {
  position: absolute;
  height: 280px;
  width: 280px;
}

#image5 {
  position: absolute;
  height: 280px;
  width: 480px;
}

#image6 {
  position: absolute;
  height: 450px;
  width: 450px;
}

/*These classes are for stacking or ordering elements on top of eachother.*/

.inback {
    z-index: 1;
}

.inmiddle {
    z-index: 2;
}

.infront{
    z-index: 3;
}

