#comicContainer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  justify-items: center;
  align-items: center;
}

#comicFigure {
  max-width: calc(100% - 70px);
  overflow-x: auto;
  
}

#rightSidebar {
  width: 200px;
}

main {
  max-width: 1100px;
  margin: auto;
  font-family: 'vrc';
  
}

figure {
 text-align: center;
 font-family: 'vrc';
}

#comicImg {
  max-width: calc(100% - 2px);
  border: solid black;
  
}

.nav-button {
  width: 35px;
  margin: 1px;
}
/* Add a black background color to the top navigation */
.topnav {
  margin: auto;
  background-color: #333;
  overflow: hidden;
  border: solid black;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  border: solid black;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #bababa;
  color: white;
}
.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.fix{
    position:fixed;
    bottom:0px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.vrc{
  font-family: 'vrc';
}
.updatetxt{
    font-size: 30px;
    font-family: 'vrc';
    font-weight: bold;
    color: #FFFFFF;
}
#navbar {
     height: 40px;
     background-color: #333333;
     width: 100%;
}
#navbar ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
}
#navbar li {
    padding-top: 10px;
 }
#navbar li a {
    font-family: 'vrc';
    color: #333333;
    font-weight: 800;
    text-decoration: none;
}
#navbar li a:hover {
    color: #bababa;
    text-decoration: underline;
}
#flex {
    display: flex;
}
strong {
    color: #bababa;
}
    .box {
        background-color: #fff;
        border: black solid;
        outline: 3px white solid;
        padding: 10px;
        box-sizing: border-box;
        max-height: 150px;
        overflow-y: auto;
        margin-bottom: 15px;
}

#footer {
        background-color: #fff;
        /* background color for footer */
        width: 100%;
        height: 40px;
        text-align: center;
        /* this centers the footer text */
    }
.stamp{
  display: block;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;

}
line { 
  display: block;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  margin-left: auto;
  margin-right: auto;
  border-style: inset;
  border-width: 3px;
} 
.bold {
  font-weight: bold;
}
.italic {
  font-style: italic;
}
.disclamer {
  font-family: 'vrc';
  font-style: italic;
  color: #d6d6d6;
  font-size: 15px;
}

.glow {
  font-size: 30px;
  color: #fff;
  text-align: center;
  animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #000, 0 0 20px #000, 0 0 30px #fff, 0 0 40px #fff, 0 0 50px #fff, 0 0 60px #fff, 0 0 70px #fff;
  }
  
  to {
    text-shadow: 0 0 20px #000, 0 0 30px #878787, 0 0 40px #878787, 0 0 50px #878787, 0 0 60px #878787, 0 0 70px #878787, 0 0 80px #878787;
  }
}
.countertxt{
  text-align: center;
  font-size: 14px;
  color: #fff;
}
/* unvisited link */
a:link {
  color: #bababa;
}

/* visited link */
a:visited {
  color: #878787;
}

/* mouse over link */
a:hover {
  color: #4a4a4a;
}

/* selected link */
a:active {
  color: #bababa;
}