:root {
    --background-light: #e8f5e9;
    --background-dark: #d0e9d6;
    --text-color: white;
    --text-light: white;
    --box-background: #c8102e;
    --border-color: #012169;
    
    --header-background: #5a8a72;
    --header-text: #e8f5e9;
    
    --navbar-background: #4a6b5a;
    --navbar-text: white;
    --navbar-hover: #c8102e;
    
    --sidebar-background: linear-gradient(to bottom, #00216b, #000d29);
    --sidebar-text: white;
    --sidebar-link: #00123b;
    --sidebar-hover: #000d29;
    
    --main-background: #;
    
    --footer-background: #5a8a72;
    --footer-text: #e8f5e9;
    
    --header-background-start: #012169;
    --header-background-middle: #001440;
    --header-background-end: #012169;

    --navbar-background-start: #012169;
    --navbar-background-end: #001440;
}

::selection {
  color:#c8102e;
  background-color:#012169;
}

.wrapper {
    background-color: rgba(200, 16, 46, 0.9);
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('/europe/uk/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: 270px;
  margin-right: 270px;
  background-repeat: no-repeat;
  background-position: left, right;
  background-size: 50px 30px, 50px 30px;
  background-image: 
    url('/webmastry/img/smallflag/europe/uk.jpg'),
    url('/webmastry/img/smallflag/europe/uk.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;
  }
}