:root {
    --background-light: #fffb84;
    --background-dark: #e7e483;
    --text-color: #4b392a;
    --text-light: #4b392a;
    --box-background: linear-gradient(to bottom, #fffec2, #fffd8e);
    --border-color: #ede944;
    
    --header-background: #5a8a72;
    --header-text: #4b392a;
    
    --navbar-background: #f5f155;
    --navbar-text: #4b392a;
    --navbar-hover: #f5f155;
    
    --sidebar-background: linear-gradient(to top, #fffec2, #fffd8e);
    --sidebar-text: #4b392a;
    --sidebar-link: #fffd8f;
    --sidebar-hover: #efed87;
    
    --main-background: #;
    
    --footer-background: #5a8a72;
    --footer-text: #e8f5e9;
    
    --header-background-start: #f6f256;
    --header-background-middle: #e5e148;
    --header-background-end: #f6f256;

    --navbar-background-start: #f6f256;
    --navbar-background-end: #e5e148;
}

::selection {
  color: #4b392a;
  background-color:#f5f155;
}

.custom {
  border-top: 2px solid #4b392a;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('/religion/christianity/img/pattern.jpg');
  background-repeat: repeat;
  background-size: auto;
  opacity: 0.5;
  z-index: -9999;
  pointer-events: none;
}

.text-banner {
  position: relative;
  text-align: center;
  margin-left: 250px;
  margin-right: 250px;
  background-repeat: no-repeat;
  background-position: left, right;
  background-size: 40px 40px, 40px 40px;
  background-image: 
    url('/religion/christianity/img/ichthys.jpg'),
    url('/religion/christianity/img/chirho.jpg');
}

@media (max-width: 960px) {
  .text-banner {
    margin-left: 0;
    margin-right: 0;
    background-image: none;
    background-size: initial;
    background-position: initial;
    background-repeat: initial;
  }
}