/* body {
  background-color: var(--color-primary);
  height: 100vh;
  margin: 0;
  font-family: "Apple Chancery", Cursive;
} */

/* unvisited link */

a:link {
  text-decoration: none;
  /* color: red; */
  color: black;
  /* color: var(--font-color); */
}

/* visited link */

a:visited {
  text-decoration: none;
  color: black;
  /* color: var(--font-color); */
}

/* mouse over link */

a:hover {
  text-decoration: underline;
  /* color: hotpink; */
  color: maroon;
}

/* selected link */

a:active {
  text-decoration: underline;
  color: blue;
}

div.container {
  /* height: 60%; */
  display: flex;
  /* display: grid; */
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

nav {
  width: 100%;
  height: auto;
  /* height: 60px; */
  /* background-color: #bfbfbf; */
  background-color: #bfbfbffa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  /* color: black; */
  z-index: 2000;
  /* background-color: var(--color-secondary); */
}

span.nav-toggle {
  /* font-size: 30px; */
  font-size: 2rem;
  display: inline-block;
  position: absolute;
  /* top: 20px; */
  /* top: 0.6rem; */
  top: 0.05rem;
  /* left: 18px; */
  left: 1rem;
  /* margin-right: 0.6rem; */
  cursor: pointer;
  /* border: 3px solid rgb(128, 19, 0); */
  /* background-color: var(--color-secondary); */
  /* background: var(--color-secondary);  */
  z-index: 2000;
}

.logo {
  /* margin: 40px 0 40px 0; */
}

.icon {
  /* width: 50px;
  height: 50px; */
  width: 3rem;
  height: 3rem;
  display: inline-block;
}

.logoCRB {
  /* background: var(--backgroud-url);  */
  /* background: #bfbfbf url("/assets/images/crb-logo-new.png") no-repeat center; */
  /* background: #bfbfbf url("../images/crb-logo-new.png") no-repeat center; */
  background: #bfbfbffa url("../images/crb-logo-new.png") no-repeat center;
  background-color: transparent;
  background-size: 35px 35px;
  margin-top: 3px;
}

ul {
  display: none;
  flex-direction: column;
  justify-content: center;
  padding-left: 0;
}

ul li {
  list-style-type: none;
  font-size: 1.1rem;
  cursor: pointer;
  text-align: center;
  padding: 1rem;
}

ul li:first-child {
  margin-top: 0;
}

ul li:hover {
  opacity: 0.5;
}

.active {
  display: flex;
}

/* responsive */
/* @media only screen and (orientation: landscape) { */
  /* @media (min-aspect-ratio: 3/4) {
  nav {
    height: 2.2rem;
    flex-direction: row;
  }
  .logo {
    margin: 0;
  }
  ul {
    display: flex;
    align-items: center;
    flex-direction: row;
  }
  ul li {
    display: inline-block;
    margin: 0 50px 0 0;
    text-align: left;
    border-bottom-style: none;
    padding: 0;
  }
  span.nav-toggle {
    display: none;
  }
} */