/* labeller/css/gox-base.css */

body {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url("background.jpg")
              center center / cover no-repeat;
  color: #ebebeb;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", Arial, sans-serif;
}

header, footer {
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.navigation {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.navigation li a {
  color: #ebebeb;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
}

.navigation li a.active,
.navigation li a:hover {
  background-color: #2faecf;
  color: #000 !important;
}
