:root {
    --background-light: #e8f5e9;
    --background-dark: #d0e9d6;
    --text-color: black;
    --text-light: white;
    --box-background: #a6d3ff;
    --border-color: #005eb8;
    
    --header-background: #5a8a72;
    --header-text: #e8f5e9;
    
    --navbar-background: #4a6b5a;
    --navbar-text: #e8f5e9;
    --navbar-hover: #0052a1;
    
    --sidebar-background: linear-gradient(to right, #005eb8, white);
    --sidebar-text: white;
    --sidebar-link: #005eb8;
    --sidebar-hover: #00498f;
    
    --main-background: #;
    
    --footer-background: #5a8a72;
    --footer-text: #e8f5e9;
    
    --header-background-start: #005eb8;
    --header-background-middle: #0052a1;
    --header-background-end: #005eb8;

    --navbar-background-start: #005eb8;
    --navbar-background-end: #0052a1;
}

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