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

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


/*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;
  image-size: 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: 350px;
    width: 680px;
    border:30px solid yellow;
    float:center;
    background-color:#28d8eb;
    overflow: hidden; 
  background-image:url("https://media.istockphoto.com/id/1036926378/photo/airplane-on-blue-sky-background-3d-illustration.jpg?b=1&s=170667a&w=0&k=20&c=IbqeFbPvvZNCgBRI0lN0EimC5xz4zxdEhBNcXRnPwvo=");
background-size: cover;
}

#panel2 {
    position:relative;
    height: 280px;
    width: 580px;
    border:10px solid #2b2b2b;
    float: left;
    background-color: #77da62;
    overflow: hidden;
background-image:url("https://media.istockphoto.com/id/494711460/photo/handsome-young-man-thinking.jpg?b=1&s=170667a&w=0&k=20&c=BlhlBjbK6RdgOZUTjYMz1C0AaWxpLw2_73Mu2pbcSvc=");
}

#panel3 {
    position:relative;
    height: 280px;
    width: 480px;
    border:10px solid #2b2b2b;
    float: right;
    background-color: #00d26d;
    overflow: hidden;
background-image:url("https://media.istockphoto.com/id/1337010655/photo/blue-question-mark-icon-sign-or-ask-faq-answer-solution-and-information-support-illustration.jpg?b=1&s=170667a&w=0&k=20&c=PQuVdvPi0f8Nw4o4hSZKDsUo-235AQz_Ihe7tfM_3R4=")}

#panel4 {
    position:relative;
    height: 280px;
    width: 480px;
    border:10px solid #2b2b2b;
    float: left;
    background-color: #ffc100;
    overflow: hidden;
background-image:url("https://media.istockphoto.com/id/1353663172/photo/young-doubtful-confused-african-american-man-spreading-palms-saying-i-dont-know.jpg?b=1&s=170667a&w=0&k=20&c=93KemBp_PI48gSwUnRINdpX9A0FKzK22flDO-5x1DfM=");}

#panel5 {
    position:relative; 
  height: 280px;
    width: 430px;
    border:10px solid #2b2b2b;
    float: right;
    background-color: #ff9100;
    overflow: hidden;
  background-image:url("https://media.istockphoto.com/id/1320257355/photo/garbage-trucks-into-waste-emptying-containers-for-waste-disposal-in-thailand-isolate-on-white.jpg?b=1&s=170667a&w=0&k=20&c=srCvCw0H0cci_RTyU9XFF04Y7EravdYUvRv7RfYa9fM=");
}

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

