body {
  background: #74b5ab;
  font-family: sans-serif;
  font-size: 0.9em;
  color: white;
  }
  
h1 a {
  text-decoration: none;
  color: #b4dcb4;
  }
  
img {
  max-width: 100%;
  }
  
.wrapper { /*everything goes inside this*/
  width: 69em;
  margin: auto;
  }
  
.comic-box, .header, .comment-box, .page-navigation, .blog-box{
  background: #0c1d24;
  padding: 1em;
  border-radius: 5px;
  }
  
.header, .comment-box {
  margin-top: 1em;
  margin-bottom: 1em;
  }

 

.comic-box, .sidebar-wrapper   {
  display: inline-block;
  }
  
 

.sidebar-wrapper { /*sidebar goes inside this*/
  width: 18em;
   
  margin-left: 0; margin-right: 1em;
 
  display: inline-block;
  vertical-align: top;
}
 

.main-row{
  display: flex;
  align-items: flex-start;
  gap: 1em;              /* replaces margin-left */
}

.sidebar-wrapper{
  width: 18em;
  margin-left: 0;
}

.comic-box{
  flex: 1;               /* takes remaining space */
  min-width: 0;          /* prevents weird overflow pushing it down */
}

 


.sidebar, .sidebar-2 {
  background: #223f50;
  padding: 1em;
  border-radius: 5px;
  margin-bottom: 1em;
  }
  
.header h1, .sidebar-wrapper h2 {
  text-align:center;
  }
  
.sidebar-2 {
  margin-top: 0.9em;
  }
  
.header {
  width: 40em;
  margin: 0 auto;
  margin-top: 0.9em;
  margin-bottom: 0.9em;
  margin-left: 5em;
  font-size: 20px;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  }
  
.comic-box { /*this is where the page of the comic goes*/
  width: 48.5em;
  }
  
/*Prevent image overflow*/
.comic-box img, .comment-box img, .blog-box img, .header img, .sidebar-wrapper img {
  max-width: 100%;
  height: auto;
  }
  
 
.comment-box { /*commentary box below the comic page + nav*/
max-width: 100%;
  }
  
 .cast-box {
display: grid;


}
  
 .blog-box { /*For Blogs/Info*/
 width: 47em;
 max-width: 100%;
 min-height: 500px;
  }
  
.page-navigation { /*this is where the page nav buttons go*/
  margin-top: 1em;
  background: #223f50;
  }
  
.button, .nav-button {
  text-align: center;
  margin: 0 auto;
  padding: 1em;
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  margin-top: 0.35em;
  margin-bottom: 0.35em;
  background: #4d7c80;
  font-weight: bold;
  color: white;
  font-size: 1.3em;
  border-radius: 5px;
  text-decoration: underline;
  }
  
.button { /*sidebar buttons*/
  
  }
  
.nav-button { /*comic page navigation buttons*/
  display: inline-block;
  margin-left: 0.1em;
  margin-right: 0.1em;
  }
  
.button a, .nav-button a, a {
  color: #b4dcb4;
  }
  
a:hover {
  color: white;
  }
  
.footer {
  text-align: center;
  font-size: 0.8em;
  padding: 1em;
  color: black;
  }
  
center {
  text-align: center;
  }
  
  
