body  {
  max-width: 100%;
  height: 100vh;
  margin: 0;
  box-sizing: border-box;
  background-color: #1A1F26;
  font-family: "consolas", "courier new";
  font-size: 14px;
  text-align: center;
  color: white;
  overflow: hidden;
  }
  
.scroll::-webkit-scrollbar {
  width: 12px;
}

.scroll::-webkit-scrollbar-track {
  background: white;
}

.scroll::-webkit-scrollbar-thumb {
  background-color: #3900D5;
  transition: 0.4s;
}

.scroll::-webkit-scrollbar-thumb:hover {
  background-color: #E80000;
}
  
::selection {
  background: #E80000; /*red*/
  color: white;
}

p  {
  letter-spacing: 2px;
  line-height: 18px;
}

.content {
  height: 100vh;
  display: grid;
  grid-template-areas: 'header' 'scroll';
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 5fr;
  align-content: space-between;
  justify-content: center;
}

.scroll {
  grid-area: scroll;
  background-color: black;
  overflow-y: scroll;
  border-style: solid;
  border-color: #3900D5; /*rich dark blue*/
  border-width: 2px;
  margin: 0 18vw 2vw 18vw;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
}

.scroll img {
  margin: 12px; 
}

.intro {
  margin: 12px;
}

.header {
  grid-area: header;
  width: 100%;
  margin: 10px 0 0 40px;
  font-size: 16px;
  text-align: left;
  }
  
.header h3 {
  font-size: 22px;
}
  
.header a {
  text-decoration: none;
  text-align: left;
  color: white;
  transition: 0.6s;
  }
  
.header a:hover {
  color: #E80000;
  letter-spacing: 3px;
}

/*.row2, .row3, .row5, .row6, .row9, .row11, .row13, .row15, .row17 { /*rows with two columns
  display: inline-block;
  margin: 0 10px;
}

.row4, .row12, .row16 { /*articles
  height: 50vh;
}

.row1, .row8, .row14 { /*decor
  height: 10vh;
}

.row2, .row3, .row5, .row6, .row7, .row9, .row10, .row11, .row13, .row15, .row17 { /*journal entries
  height: 40vh;
}*/






