/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
* {
  box-sizing: border-box;
}

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

#IndexHeaderText {
  width: 100%;
  height: 199px;
  text-align: center;
  vertical-align: sub;
  padding-top: 50px;
}

header {
  width: 100%;
  height: 199px;
}

nav {
  padding-top: 50px;
  margin-top: -50px;
  float: left;
  width: 20%;
  height: 500px;
  background: #a78948;
  -webkit-mask: linear-gradient(#0000, #000 50px);
  mask: linear-gradient(#0000, #000 50px);
}

#NavHeader {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  unicode-bidi: isolate;
}

article {
  margin-top: -50px;
  float: left;
  padding: 80px 20px 20px 20px;
  width: 80%;
  background-color: #d7caa3;
  height: 500px;
  -webkit-mask: linear-gradient(#0000, #000 50px);
  mask: linear-gradient(#0000, #000 50px);
}