*{
 margin: 0; 
}
body {
  background-color: black;
  color: white;
  font-family: pixelFont;
  overflow: hidden;
  box-sizing: border-box;
}
.foregroundScreen {
  background-image: url(images/site_border_export_v2.png);
  background-size: 1920px 100vh;
  width: 100%;
  height: 100%;
  position: fixed;
  margin: 0;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

@font-face{
  font-family: pixelFont;
  src: url(fonts/press-start-2p-v16-latin-regular.woff2);
}

.mainContent {
  overflow-x: hidden;
  overflow-y: scroll;
  word-break: break-word;
  height: 100%;
  width: 90%;
  position: relative;
  border-style: dashed;
  border-width: 4px;
  border-color: rgba(190,0,190,0.9);
  background-color: rgba(50, 0, 50, 0.25);
  float: right;
  margin-left: 18vw;
  margin-right: 2vw;
}

.currentPageTitle{
 color: rgba(190,0,190,0.9);
 overflow: hidden;
 background-color: rgba(50, 0, 50, 0.25);
 border-style: solid;
 border-width: 4px;
 border-color: rgba(190,0,190,0.9);
 position: absolute;
 float: none;
 height: 10%;
 width: 90%;
}

.siteIcon{
 width: 90%;
 overflow: hidden;
 float: none;
 position: relative;
 height: 22%;
}

.siteIcon img{
 width: 60%;
 display: block;
 margin-left: auto;
 margin-right: auto;
}

.currentPageTitle h1{
 font-family: pixelFont;
 text-align: center;
 margin-top: 1.5vh;
 font-size: 160%;
}

.sidebar {
  background-color: rgba(50, 0, 50, 0.25);
  position: relative;
  word-break: break-word;
  border-style: solid;
  border-width: 4px;
  border-color: rgba(190,0,190,0.9);
  float: none;
  height: 67%;
  overflow-x: hidden;
  overflow-y: scroll;
  width: 90%;
  top: 11%;
}

.sidebarContainer{
 display: block;
 width: 14vw;
 position: absolute;
 margin-left: 2vw;
 height: 100%;
}

.screenContainer{
  display: flex;
  position: absolute;
  height: 68vh;
  width: 88vw;
  margin: 16vh 6.5vw 0 6.5vw;
  
}

.mainContentContainer{
  width: 96.5%;
  margin: 2%;
}

.mainContent p{
  color: rgba(190,0,190,0.9);
  font-family: pixelFont;
}

a{
 text-decoration: none;
 text-align: center;
}

.mainContent h2{
  color: rgba(190,0,190,0.9);
  font-family: pixelFont;
  text-align: center;
}

.spacer{
 width: 100%;
 margin: 5% 0 5% 0;
}

.mainContent h3{
  color: rgba(190,0,190,0.9);
  font-family: pixelFont;
}

.navButton{
 font-family: pixelFont;
 position: relative;
 margin: 5%;
 width: 90%;
 height: 10%;
 font-size: 100%;
 color: rgba(190,0,190,0.9);
 background-color: rgba(5, 0, 5, 0.5);
 border-style: solid;
 border-width: 2px;
 border-color: rgba(190,0,190,0.9);
 overflow: hidden;
}

.navButton:hover{
  background-color: rgba(50,0,50,0.75);
}

.contentPost{
  position: relative;
  margin: 1%;
  border-style: solid;
  border-width: 5px 0 5px 0;
  border-color: rgba(190,0,190,0.9);
  background: linear-gradient(rgba(5,0,5,0.1), rgba(5,0,5,0.5));
  padding-top: 25px;
  padding-bottom: 25px;
}

.contentPost p{
 margin: 0 5% 0 5%; 
 font-size: 100%;
}
.contentPost h3{
 margin: 0 2% 0 2%; 
 font-size: 120%;
}

.contentBanner{
 height: auto;
 margin: 2% 1% 2% 1%;
 border-style: solid;
 border-width: 5px 0 5px 0;
 border-color: rgba(190,0,190,0.9);
 background: linear-gradient(rgba(5,0,5,0.1), rgba(5,0,5,0.5));
 padding-top: 50px;
 padding-bottom: 50px;
}

.contentBanner p{
 text-align: center;
}

.contentBanner a{
 color: rgba(190,0,190,0.9);
 text-decoration: none; 
}

.contentBanner h2{
 font-size: 4vh; 
}

.contentPost a{
 color: rgba(190,0,190,0.9);
 text-decoration: none; 
}

.contentGalleryColumn{
 float: left;
 width: 33.33%;
 height: 50vh;
 border-style: solid;
 border-color: rgba(190,0,190,0.9);
 border-width: 5px 0 0 0;
}

.contentGalleryColumn img:hover{
 transform: scale(1.35); 
}

.contentGalleryColumn img{
 display: block;
 height: 70%;
 margin-top: 20%;
 margin-right: auto;
 margin-left: auto;
 border-style: solid;
 border-width: 4px;
 border-color: rgba(190,0,190,0.9);
}

.contentGalleryRow{
 width: 100%;
}

.contentGalleryRow::after{
  content: "";
  clear: both;
  display: table;
}

@media screen and (max-width: 1500px) {
  .contentGalleryColumn {
    width: 100%;
  }
  .contentGalleryColumn img{
   height: 50%; 
  }
  .sidebarContainer {
   width: 22vw;
  }
  .mainContent{
   width: 80%; 
   margin-left: 25vw;
  }
  .currentPageTitle h1{
   font-size: 1.2vh;
 }
 .navButton{
  font-size: 1vh; 
 }
}