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

html body {
    background-color: #2b2b2b;
    height: 1200px;
}


/*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: "Comic Sans MS";
    font-style: italic;
    font-weight: 900;
    font-size: 40px;
    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-image: url(https://miro.medium.com/max/1000/0*5bjkLBf1VvAiMwhp);
  background-size: 780px 280px;
  background-repeat: no-repeat;
    overflow: hidden;
}

#panel2 {
    position:relative;
    height: 280px;
    width: 380px;
    border:10px solid #2b2b2b;
    float: left;
    background-image: url(https://ichef.bbci.co.uk/news/976/cpsprodpb/12A9B/production/_111434467_gettyimages-1143489763.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
    overflow: hidden;
}

#panel3 {
    position:relative;
    height: 280px;
    width: 380px;
    border:10px solid #2b2b2b;
    float: left;
    background-image: url(https://projects.codecraftworks.com/web/JtAdtZrzYOkL25ZsVFaY/assets/user.jpg);
  background-size: 200px 200px;
  background-repeat: no-repeat;
  background-position: center;
    overflow: hidden;
}

#panel4 {
    position:relative;
    height: 280px;
    width: 480px;
    border:10px solid #2b2b2b;
    float: left;
    background-image: url(https://www.insidehighered.com/sites/default/server_files/media/barber%20handshake.jpg);
  background-size: 480px 280px;
  background-repeat: no-repeat;
    overflow: hidden;
}

#panel5 {
    position:relative;
    height: 280px;
    width: 280px;
    border:10px solid #2b2b2b;
    float: left;
    background-image: url(https://static.vecteezy.com/system/resources/previews/002/304/427/original/book-store-large-bookcase-with-books-library-book-shelf-interior-knowledge-illustration-pattern-free-vector.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
    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: rgb(43, 43, 43, 0.7);
}

.bigtext {
    width: 400px;
    color: yellow;
    background-color: rgb(17, 94, 76, 0.7);
    font-family: "Comic Sans MS";
    font-style: italic;
    font-weight: 900;
    font-size: 20px;
    line-height: 100%;
    margin: 20px;
}

/* 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;
}

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

.inback {
    z-index: 1;
}

.inmiddle {
    z-index: 2;
}

.infront{
    z-index: 3;
}

