* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "bold";
  src: url("/this shit hard/alte_haas_grotesk/AlteHaasGroteskBold.ttf") format("truetype");
}
@font-face {
  font-family: "regular";
  src: url("/alte_haas_grotesk/AlteHaasGroteskRegular.ttf") format("truetype");
}
@font-face {
  font-family: "bank";
  src: url("/f25_bank_printer/F25_Bank_Printer.ttf") format("truetype");
}

.whole {
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-rows: 50% 50%;
  grid-template-columns: 339px 900px 15%;
  grid-template-areas: 
  "sb mn sb2"
  "sb mn sb2";
}

div.nav {
  /* position:fixed; */
  overflow-x: scroll;
  text-align: left;
  padding-top: 30px;
  margin-left: 35px;
  }
  .nav a {
  /* color: aliceblue; */
  color: #000;
  font-size: 30px;
  font-family: "bold";
  /* text-transform: uppercase; */
  text-decoration: none;
  letter-spacing: 2px;
  padding: 20px;
  line-height: 180%;
  }
  .nav a:hover {
  color:#9a9597;
  font-style: italic;
  }

.menu-left {
  grid-area: sb;
  height: 100%;
}

.container {
  grid-area: mn;
  display: grid;
  height: 100vh;
  overflow-y: scroll;
}

p {
  padding-right: 80px;
  padding-bottom: 8px;
  color: #000;
}
h3 {
  font-family: "regular";
  color: #000;
}
.heading {
  padding-top: 12px;
}