@import "vars.css";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*border: 1px solid yellow;  //debug */
} 

html {
  display: block;
  background-color: var(--main-dark);
}

body {
  margin: 0em;
  text-align: left;
  background-color: var(--main-dark);
  color: var(--main-white);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

#nav-bar {
  width: 100%;
  padding: 1em;
  text-align: center;
  background-color: var(--main-dark);
}

.navcontainer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1280px;
  align-items: end;
  margin: auto;
}

.thickstripe {
  border-bottom: 6px solid var(--main-light);
}

.homepage {
  color: var(--main-white);
  margin-left: 1em;
}

#instructions ul {
  list-style: none;
  text-align: center;
  font-size: 0.9rem;
}

#links ul li {
  text-align: right;
  color: var(--main-white);
  list-style: none;
  margin-top: 2em;
}

.linedlink {
  color: var(--main-white);
}

@media only screen and (max-width: 900px) {
  .navcontainer {flex-direction: column; align-items: start;}
  #links ul li {text-align: left;}
  #logo {display:none;}
}