body {
    width:1000px;;
    margin: 0 auto;
    text-align: center;
    background-color: #141414;
    color: white;
    font-family: 'Nimbus Mono PS', 'Courier New', monospace;
    
}
header {
    text-align: left;
}
#titlebanner {
    background-color: slateblue;
    width: 1000px;
}
h1, h2, p, a {
  padding:10px;
  margin:0px;
}
img {
  display:block;
  margin:0 auto;
}
/* GLASS EFFECT FOR IMAGE LINKS */
.glass-effect {
  position: relative;
  display: inline-block;
  margin:30px;
}
.glass-effect img {
  width: 300px; /* adjust the width */
  height: 200px; /* adjust the height */
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.2s ease;
}
.glass-effect::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.glass-effect:hover img {
  transform: scale(1.05);
}
.glass-effect:hover::after {
  opacity: 1;
}

footer, a {
    color: slateblue;
}
footer {
  margin-bottom:50px;
}
hr {
  color:gray;
  margin:50px 0px 50px 0px;
}
#notes {
    width:1000px;
    text-align: justify;
    margin: 0 auto;
    line-height:30px;
    font-family: 'Nimbus Mono PS', 'Courier New', monospace;
}
#comic {
    background-color: slateblue;
    margin-bottom:50px;
}
#message {
    visibility:hidden;
    height:0px;
}
button {
    margin: 7px;
    padding: 3px;
    font-size: 20px;
}
header button {
    padding:15px;
    background-color: mediumslateblue;
    border: none;
    margin:0;
    margin-right:10px;
}
header button:hover {
    background-color: slateblue;
    color:white;
    cursor: pointer;
}
time {
  font-weight:bold;
  font-size:20px;
}

/*RESPONSIVE*/
@media only screen and (max-width: 1000px) {
  body {
    width:100%;
  }
    button {
        font-size: 18px;
    }
    #comic img, #titlebanner img {
        width:100%;
        height:auto;
    }
    #notes {
        width:90%;
    }
    #titlebanner {
        width:100%;
        height:auto;
    }
}
@media only screen and (max-width: 450px) {
    #message {
        visibility:visible;
        padding-bottom:20px;
    }
}
