/* Simple CSS for the static website */
:root {
  --enable-sticky-header: 1;
  --enable-transparent-header: 0;
  --loading-bar-background: 255, 255, 255;
}

body {
  font-size: 16px;
  font-family: Avenir Next, sans-serif;
  margin: 0;
  padding: 0;
  background-color: rgb(49, 56, 64);
}

header {
  background-color: #000000;
  color: white;
  padding: 20px;
  text-align: center;
  position: sticky;
  top: 0;
}

section {
  padding: 20px;
  color: white;
  /* display: block; */
  /* unicode-bidi: isolate; */
}

footer {
  text-align: center;
  padding: 10px;
  background-color: #000000;
  color: white;
  /* position: fixed; */
  width: 100%;
  bottom: 0;
}

.container {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  --container-outer-margin: 0px;
  align-content: center;
  justify-items: center;
  /* text-align: center; */
}

a {
  color: white;
}
