:root {
    --background-light: #EBE4CF;
    --background-dark: #EBE4CF;
    --text-color: #2e4a3e;
    --text-light: #4a6b5a;
    --box-background: #ebe4cf;
    --border-color: #3c5280;
    
    --header-background: #5a8a72;
    --header-text: #e8f5e9;
    
    --navbar-background: #4a6b5a;
    --navbar-text: #e8f5e9;
    --navbar-hover: #3a5a4a;
    
    --sidebar-background: #ebe4cf;
    --sidebar-text: #2e4a3e;
    --sidebar-link: #e2d5ae;
    --sidebar-hover: #c5b996;
    
    --main-background: #ebe4cf;
    
    --footer-background: #5a8a72;
    --footer-text: #e8f5e9;
    
    --header-background-start: #3c5280;
    --header-background-middle: #2b3e65;
    --header-background-end: #3c5280;

    --navbar-background-start: #3c5280;
    --navbar-background-end: #2b3e65;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('/religion/islam/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: 290px;
  margin-right: 290px;
  background-repeat: no-repeat;
  background-position: left, right;
  background-size: 40px 40px, 40px 46px;
  background-image: 
    url('/religion/islam/img/cresent.jpg'),
    url('/religion/islam/img/star.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;
  }
}