:root {
  --lineccolor: #eaded9;
  --bgcolor: #101112;
}

/*FONTS*/
.instrument-serif-regular {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: normal;
}

.noto-sans-normal {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

/*TEXT*/
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 150px 10px 150px;

  font-family: "Noto Sans", sans-serif;
  font-size: 20px;

  background-color: var(--bgcolor);
  color:var(--lineccolor);
  box-sizing: border-box;

  background-image: url("images/fade.png"), url("images/flowers.png");
  background-position: top;
  background-size: 400px, cover;
  background-repeat: repeat-x, no-repeat;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

h1 {
  font-family: "Instrument Serif", serif;
  transform: scaleY(2);
  letter-spacing: 2px;
  font-size: 50px;
  font-weight: lighter;
  text-align: center;
}
h2 {
  font-family: "Instrument Serif", serif;
  letter-spacing: 2px;
  font-size: 30px;
  font-weight: lighter;
  text-align: center;
}

/*NAV BAR*/
.nav {
  display: flex;;
  flex-direction: row;
  justify-content: top;
  align-items: center;
  padding-block-start: 0px;
  border: 1px solid var(--lineccolor);
}
.nav button {
  flex: 1;
  font-family: "Instrument Serif", serif;
  font-size: 20px;
  color:var(--lineccolor);
  background-color: var(--bgcolor);
  border: none;
}
.nav button:hover {
  background-color: var(--lineccolor);
  color: var(--bgcolor);
}
.nav button:focus {
  outline:var(--bgcolor);
  outline-style:dotted;
}
.nav button:active  {

}


.mainbox {
  display: flex;;
  flex-direction: column;
  justify-content: top;
  align-items: left;
  padding-block-start: 0px;
  border: 1px solid var(--lineccolor);
  max-width: 1000px;
  min-width: 75vw;
  background-color: var(--bgcolor);
  min-height: 80vh;
}

.textbox {
  display: flex;;
  flex-direction: column;
  justify-content: top;
  align-items: left;
  padding-block-start: 0px;
  border: 1px solid var(--lineccolor);
  max-width: 1000px;
}

.centeredbox {
  display: flex;
  flex-direction: column;
  align-items: center;
}