* {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  display: grid;
  grid-template-columns: auto;
  align-items: top;
  grid-template-rows: 9% 91%;
  grid-template-areas: 
    "header"
    "intro";

  z-index: 1;
}

.index-intro {
  display: grid;
  position: relative;
  grid-area: intro;
  justify-content: left;
  align-items: center;
  height: 40%;
  min-height: 18em;
  background-color: #36454F;
  padding-left: 2.0em;
  z-index: 2;
}

p {
  font-size: 16px;
  font-family: Roboto;
  color: #fff;
  line-height: 24px;
}

h3 {
  color: deepskyblue;
}

h4 {
  font-size: 22px;
  font-family: Rototo;
  color: #1E1E1E;
  line-height: 32px;
  margin: 0.0em auto;
}

header {
  display: grid;
  grid-area: header;
  position: relative;
  width: 100%;
  height: 80px;
  background-color: #161616;
  z-index: 3;
}

header nav {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav div {
  display:flex;
  flex-direction:row;
}

header nav div ul {
  display: flex;
  flex-direction: row;
  column-gap: 1.0em;
}

header nav ul {
  display: flex;
  flex-direction: column;
  margin: 0 2.0em;
}

#largeletters {
    font-size: 1.6em;
}

