.bg-slate-900{
	background-image: linear-gradient(0deg, rgb(94, 5, 4),rgb(253, 19, 61));
}
.bg-slate-900 img{
	display: none;
}

a {color: #a30000; transition: all 0.2s ease-in-out; text-decoration: none}
a:hover{color: #de0000; text-decoration: none}
.homepage_image {display: none}
.homepage_about {padding: 16px; border: 4px solid rgba(229, 231, 235, .5);margin-bottom: 4rem;}
.homepage_about h2, .current_issue h2 {font-weight: 600; color: #7a0000; margin-top: 1em;}

.customBlock-content a, 
.prose :where(a):not(:where([class~="not-prose"], [class~="not-prose"] *)),
.custom-txt-footer a,
.footer-menu a
{color: #a30000; transition: all 0.2s ease-in-out; text-decoration: none}
.customBlock-content a:hover, 
.prose :where(a):not(:where([class~="not-prose"], [class~="not-prose"] *)):hover, 
.custom-txt-footer a:hover,
.footer-menu a:hover
{color: #de0000; text-decoration: none}
.footer-menu {
	border: 2px solid rgba(229, 231, 235, .25);
	border-left: 0;
	border-right: 0;
}
.footer-menu a{
	padding: 8px 12px;
}
.index-by {
  display: flex;
  padding: 1rem 0;
  text-align: center;
}
.index-by img {
  margin: 5px;
  padding: 5px;
  width: 150px;
  height: auto;
  transition: all 0.3s ease-in-out;
  opacity: 0.95;
}
.index-by img:hover {
  -webkit-filter: grayscale(75%);
  filter: grayscale(75%);
  opacity: 1;
}
.index-brand {
  display: inline-block;
  margin: 5px auto;
}

@media only screen and (min-width: 768px) {
  .back-to-top {
    bottom: 2rem;
  }
}
.back-to-top {
  font-size: 1rem;
  position: fixed;
  display: inline-block;
  bottom: 60px;
  right: 20px;
  margin: 0 auto;
  z-index: 999;
  border-radius: 50px;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  visibility: hidden;
  -webkit-transform: translate3d(0,50px,0);
  -moz-transform: translate3d(0,50px,0);
  transform: translate3d(0,50px,0);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  box-shadow: rgba(0,0,0,.1) 0 10px 50px;
  color: #fff;
  background: #a30000;
}
.back-to-top:hover{
	background: #de0000
}