#content{
  display: block;
  border-radius: 10px;
  width: 90%;
  padding-left: 20px;
}
img:not(.nolt){
  display: block;
  border-radius: 20px;
  width: 50%;
  padding: 10px;
}
pre{
  background-color: #080808;
  border-radius: 10px;
  padding: 10px;
}
h1{
  padding-top: 15px;
}
h2{
  padding-top: 10px;
}
code{
  color: #FF3A28;
}

#image-viewer {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.9);
}
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}
.modal-content { 
  animation-name: zoom;
  animation-duration: 0.6s;
}
@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}
#image-viewer .close {
  position: absolute;
  bottom: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
#image-viewer .close:hover,
#image-viewer .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 700px){
  .modal-content {
      width: 100%;
  }
  img:not(.nolt){
    width: 80%;
  }
}
img:hover {opacity: 0.7;}

.icon-bar {
  position: fixed;
  top: 50%;
  right: 0px;
}

.icon-bar a {
  display: block;
  text-align: center;
  padding: 16px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  background: #2e2e2e;
}
