:root {
    --background-light: #4d4ca7;
    --background-dark: #4d4ca7;
    --text-color: #020078;
    --text-light: #020078;
    --box-background: #f0f0ff;
    --border-color: #020078;
    
    --header-background: black;
    --header-text: white;
    
    --navbar-background: #4a6b5a;
    --navbar-text: #e8f5e9;
    --navbar-hover: #020078;
    
    --sidebar-background: linear-gradient(to top, #f0f0ff, #bdbdff);
    --sidebar-text: #020078;
    --sidebar-link: #ddddff;
    --sidebar-hover: #f0f0ff;
    
    --main-background: #;
    
    --footer-background: #5a8a72;
    --footer-text: #e8f5e9;
    
    --header-background-start: #0300a2;
    --header-background-middle: #020078;
    --header-background-end: #0300a2;

    --navbar-background-start: #0300a2;
    --navbar-background-end: #020078;
}

.text-banner {
  position: relative;
  text-align: center;
  margin-left: 270px;
  margin-right: 270px;
  background-repeat: no-repeat;
  background-position: left, right;
  background-size: 40px 40px, 40px 40px;
  background-image: 
    url('/webmastry/img/icons/religion/judaism.jpg'),
    url('/religion/judaism/img/menora.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;
  }
}

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