:root {
    --background-light: #a20800;
    --background-dark: #a20800;
    --text-color: #a20800;
    --text-light: #a20800;
    --box-background: linear-gradient(to top, #ffff8b, #ffff3c);
    --border-color: #a20800;
    
    --header-background: #5a8a72;
    --header-text: #ffff00;
    
    --navbar-background: #4a6b5a;
    --navbar-text: #ffff00;
    --navbar-hover: #b40900;
    
    --sidebar-background: #ffff3c;
    --sidebar-text: #a20800;
    --sidebar-link: #ffff8b;
    --sidebar-hover: #ffff3c;
    
    --main-background: #;
    
    --footer-background: #5a8a72;
    --footer-text: #e8f5e9;
    
    --header-background-start: #a20800;
    --header-background-middle: #b40900;
    --header-background-end: #a20800;

    --navbar-background-start: #a20800;
    --navbar-background-end: #b40900;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('/asia/vietnam/design/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: 40px 30px, 40px 30px;
  background-image: 
    url('/webmastry/img/smallflag/asia/vietnam.jpg'),
    url('/webmastry/img/smallflag/asia/vietnam.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;
  }
}