body{
  background: hsl(154 50% 5%);
  color: hsl(154 84% 70%);
  text-shadow: 0 0 4px hsl(154 84% 70%);
  font-family: monospace;
  font-size: 15px;
}
.solid_border{
  border: 2px solid;
  max-width: 1200px;
  margin: 20px auto;
  position: relative;
  padding: 10px;
  background-color: hsl(154 50% 5%);
  overflow: hidden;
}
/*CRT EFFECT CODE STARTS HERE */
#glare_effect{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: radial-gradient(hsl(154 5% 15%) 0%, hsl(154 50% 5%) 70%);
  background: repeating-linear-gradient(transparent 0px 1px, hsl(154 0% 0%/ .35) 3px 4px);
}
@keyframes lines{
  0% {background-position: 0px 0px}
  50% {background-position: 0px 0px}
  51% {background-position: 0px 2px}
  100% {background-position: 0px 2px}
}
#interlaced{
  position: fixed;
  background: repeating-linear-gradient(transparent 0px 1px, hsl(154 0% 0%/.3) 3px 4px);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  animation: lines 0.03333333333s linear infinite;
}
/* CRT EFFECT CODE ENDS HERE */
/* GRID CONTAINER AND BOX CODE STARTS HERE */
.grid-container{
  display: grid;
  grid-template-columns: 1fr 2fr 1fr; /* Remember! */
  gap: 20px;
  padding: 20px 0;
  align-items: start;
}
*{
  box-sizing: border-box;
}
.box{
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: transparent;
  border: 5px solid hsl(154 84% 70%);
  margin: 20px;
  padding: 10px;
  height: auto;
  margin: 0 0 20px 0;
  width: 100%;
  max-width: 100%;
}
.box img{
  max-width: 99%;
  height: auto;
  border: 1px solid hsl(154 84% 70%);
  margin-top: 10px;
}
.box p{
  margin-top: 10px;
  line-height: 1.4;
  width: 100%;
}
.scroll-box{
  max-height: 824px;
  overflow-y: auto;
  overflow-x: hidden;
  justify-content: flex-start;
}
.scroll-box::-webkit-scrollbar{
  width: 8px;
}
.scroll-box::-webkit-scrollbar-track{
  background: hsl(154 50% 5%);
}
.scroll-box::-webkit-scrollbar-thumb{
 border-radius: 2px;
  background: hsl(154 84% 70%);
}
/* GRID CONTAINER AND BOX CODE ENDS HERE */


/* NAVIGATION BAR CODE STARS HERE */
.navbar ul{
  display: flex;
  list-style-type: none;
  justify-content: center;
  background-color: hsl(154 84% 70%);
  padding: 0px;
  margin: 0px;
  overflow: hidden;
  font-style: monospace;
}
.navbar a{
  color: green;
  text-decoration: none;
  padding: 15px;
  display: block;
  text-align: center;
}
.navbar a:hover{
  color: white;
  background-color: hsl(154 50% 5%);
  text-decoration: underline;
}

.navbar a:visited{
  text-decoration: none;
}
.navbar li{
  display: inline-block;
}
/* NAVIGATION BAR CODE ENDS HERE */

/* SITE SECTIONS CODE STARTS HERE */
section::after{
  content: "";
  display: table;
  clear: both;
}
article-left{
  float: left;
  padding: 20px;
  width: 70%;
  background-color: transparent;
  height: auto;
}
article-right{
  float: right;
  padding: 20px;
  width: 100%;
  background-color: transparent;
  height: auto;
}
footer{
  clear: both;
  text-align: center;
  background-color: hsl(157, 53%, 30%);
  color: white;
  padding: 20px;
}
/* SITE SECTIONS CODE ENDS HERE */

/* LINK OPTIONS CODE STARTS HERE */
a:link{
  text-decoration: none;
  background-color: transparent;
}
a:visited{
  background-color: transparent;
  text-decoration: none;
}
a:hover{
  color: white;
  text-decoration: underline;
}
/* LINK OPTIONS CODE ENDS HERE */

/* MISCELLANEOUS (FOR NOW) */
pre{
  text-align: center;
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
  overflow-x: auto;
  white-space: pre;
  margin-top: auto;
  display: table;
}
p{
  margin: 10px;
  border: 10px;
  font-size: 20px;
}
ul{
  display: block;
  list-style-type: none; 
  list-style-type: disc;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px;
}

/* RESPONSIVE WEB DESIGN CODE */
@media (max-width: 900px){
  .grid-container{
    grid-template-columns: 1fr; /* All column get stacked on one row */
    gap: 10px;
  }
  pre{
    font-size: 4px; /* I guess 5px should be big enough for smartphones...*/
    overflow-x: auto;
  }
  .navbar ul{
    flex-direction: column; /* Neat */
  }
  .solid_border{
    width: 98%;
    margin: 2px auto;
  }
}