:root {
    --background-light: white;
    --background-dark: white;
    --text-color: #003061;
    --text-light: #003061;
    --box-background: linear-gradient(to top, #99ccff, white);
    --border-color: #003061;
    
    --header-background: ;
    --header-text: white;
    
    --navbar-background: ;
    --navbar-text: white;
    --navbar-hover: #032445;
    
    --sidebar-background: #99ccff;
    --sidebar-text: #003061;
    --sidebar-link: white;
    --sidebar-hover: #c9e4ff;
    
    --main-background: ;
    
    --footer-background: ;
    --footer-text: ;
    
    --header-background-start: #003061;
    --header-background-middle: #004080;
    --header-background-end: #003061;

    --navbar-background-start: #003061;
    --navbar-background-end: #004080;
}

.text-banner {
  position: relative;
  text-align: center;
  margin-left: 270px;
  margin-right: 270px;
  background-repeat: no-repeat;
  background-position: left, right;
  background-size: 40px 42px, 40px 42px;
  background-image: 
    url('/europe/greece/img/coat.jpg'),
    url('/europe/greece/img/coat.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: absolute;
  inset: 0;
  background-image: url('/europe/greece/img/pattern.jpg');
  background-repeat: repeat;
  background-size: auto;
opacity: 0.7;
  z-index: -1;
}