:root {
    --background-light: #c7e4fc;
    --background-dark: #def0ff;
    --text-color: black;
    --text-light: black;
    --box-background: linear-gradient(to top, #6cace4, white);
    --border-color: #2a5e8c;
    
    --header-background: ;
    --header-text: #2a5e8c;
    
    --navbar-background: #;
    --navbar-text: #2a5e8c;
    --navbar-hover: #bde0ff;
    
    --sidebar-background: #b7deff;
    --sidebar-text: black;
    --sidebar-link: white;
    --sidebar-hover: #d6ecff;
    
    --main-background: #;
    
    --footer-background: #5a8a72;
    --footer-text: #e8f5e9;
    
    --header-background-start: #6cace4;
    --header-background-middle: #bde0ff;
    --header-background-end: #6cace4;

    --navbar-background-start: #6cace4;
    --navbar-background-end: #bde0ff;
}

.text-banner {
  position: relative;
  text-align: center;
  margin-left: 250px;
  margin-right: 250px;
  background-repeat: no-repeat;
  background-position: left, right;
  background-size: 40px 42px, 40px 42px;
  background-image: 
    url('/samerica/argentina/img/sol.jpg'),
    url('/samerica/argentina/img/sol.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;
  }
}

::selection {
  background-color:#7d4016;
  color:#ffb81c;
}