/* Font */
@import url('https://fonts.googleapis.com/css2?family=Jersey+10&display=swap');
.jersey-10-regular {
font-family: "Jersey 10", sans-serif;
font-weight: 400;
font-style: normal;
}

html, body {
  overflow: hidden;
  height: 100%;
}
* {
  scrollbar-width: auto;
  scrollbar-color: #c4c4c4 #00000000;
}

/* Main Layout & Content */
.column {
  float: left;
  padding-top: 2%;
}
.left {
  width: 20%;
}
.right {
  width: 20%;
}
.middle {
  width: 60%;
  display: flex;
  justify-content: center;
}
.mainBox {
  z-index: 1001;
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-template-areas:
    "header header"
    "marquee marquee"
    "sidebar content"; 
  width: 825px;
  border: 5px outset rgb(244, 244, 244);
  color: aliceblue; 
  background-color: rgba(0, 0, 0);
  height: 750px;
}
.mainHeader {
  grid-area: header;
  text-align: center;
  background-color: black; 
  border: 5px inset rgb(244, 244, 244);
  padding: 0%;
}
.mainHeaderImages {
  position: relative;
  top: 0;
  left: 0;
}
.marqueeBar {
  grid-area: marquee;
  border: 5px inset rgb(244, 244, 244);
  height: 32px;
}
.sidebar {
  grid-area: sidebar;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "navBox"
    "updateLog"
    "shareMe";
  border: 5px inset rgb(244, 244, 244);
  align-content: start;
}
.navBox {
  grid-area: navBox;
  color: aliceblue; 
  background-color: rgba(0, 0, 0);
  border: 5px inset rgb(244, 244, 244);
  height: auto;
  /* max-height: 386px; */
}
.updateLog {
  grid-area: updateLog;
  color: aliceblue; 
  background-color: rgb(0, 0, 0);
  border: 5px inset rgb(244, 244, 244);
  padding: 5px;
  overflow: auto;
  max-height: 100px;
}
.shareMe {
  grid-area: shareMe;
  color: aliceblue; 
  background-color: rgb(0, 0, 0);
  border: 5px inset rgb(244, 244, 244);
  padding: 5px;
  overflow: auto;
  max-height: 100px;
}
.content {
  grid-area: content;
  border: 5px inset rgb(244, 244, 244);
  background-color: rgba(0, 0, 0);
  padding: 10px;
  overflow: auto;
  height: 586px;
}

.webHover:hover{
  opacity: 0.8;
  scale: 1.2;
  transition-duration: 300ms;
}


/* Navigation Menu */
.navButton {
  cursor: pointer;
  align-items: center;
  color: aliceblue;
  display: flex;
  width: 97%;
  padding: 5px;
  margin: 3px;
  background-color: rgb(44, 44, 44);
  border: 2px solid rgba(157, 157, 157, 0.78);
  transition-duration: 0.2s;  
  font-size: 175%;
  font-family: 'Jersey 10';
}
.navButton:hover {
  background-color: #4582a0;
  box-shadow: 0 3px #4a4a4a;
  transform: translateY(3px);
}
.navButton:active {
  background-color: #d4ea2f;
}
.navButtonSmall {
  cursor: pointer;
  align-items: center;
  color: aliceblue;
  display: flex;
  width: 80%;
  padding: 5px;
  margin: 3px;
  background-color: rgb(44, 44, 44);
  border: 2px solid rgba(157, 157, 157, 0.78);
  transition-duration: 0.2s;  
  font-size: 150%;
  font-family: 'Jersey 10';
  margin-left: auto;
}
.navButtonSmall:hover {
  background-color: #4582a0;
  box-shadow: 0 3px #4a4a4a;
  transform: translateY(3px);
}
.navButtonSmall:active {
  background-color: #d4ea2f;
}



/* Pixel Art */
body {
  background-image: url(../images/all-pages-pixel-art/stars.gif);
}
.cloud {
  width: 100%;
  position: fixed;
  z-index: -1;
  overflow: hidden;
  box-sizing: border-box;
}
.cloudMove1 {
  z-index: -1;  
  opacity: 0.5;
  padding-left: 100%;
  display: inline-block;
  animation: cloudMove 18s linear infinite; 
}
@keyframes cloudMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%); 
  }
}
.cloudMove2 {
  z-index: -1;
  opacity: 0.7;
  padding-left: 100%;
  display: inline-block;
  animation: cloudMove2 28s linear infinite; 
  padding-bottom: 100px;
}
@keyframes cloudMove2 {
  0% {
    transform: translateX(111%);
  }
  100% {
    transform: translateX(-100%); 
  }
}
.cloudMove3 {
  z-index: -1;
  opacity: 0.8;
  padding-left: 100%;
  display: inline-block;
  animation: cloudMove3 18s linear infinite; 
}
@keyframes cloudMove3 {
  0% {
    transform: translateX(105%);
  }
  100% {
    transform: translateX(-100%); 
  }
}
.flyingBoat {
  z-index: -1;
  padding-left: 100%;
  display: inline-block;
  animation: flyingBoatMove 16s linear infinite; 
}
@keyframes flyingBoatMove {
  0% {
    transform: translateX(110%);
  }
  100% {
    transform: translateX(-110%); 
  }
}
.wheat {
  z-index: -1;
  padding-right: 100%;
  display: inline-block;
  animation: wheatAnim 25s linear infinite; 
}
@keyframes wheatAnim {
  0% {
    transform: translate(-40%, 800px);
  }
  100% {
    transform: translate(100%, -350px); 
  }
}
.hoverImages{
  opacity: 1;
}
.hoverImages:hover{
  scale: 0.9;
  cursor: pointer;
}
.mountains { 
  z-index: 1;
  width: 100%;
  position: fixed;
  bottom: 0%;
  pointer-events: none;
}



/* Bottom Widgets */
.eso-smoking {
  z-index: 2000;
  position: fixed;
  bottom: 0;
  right: 0;
}
.eso-smoking:hover {
  opacity: 0.90; 
  transform: scale(1.03); 
  cursor: pointer;
}
#statuscafecontainer {
  z-index: 2000;
  position: fixed;
  bottom: 100px;
  right: 150px;
}
#statuscafe {
  z-index: 2000;
  padding: .5em;
  background-color: rgba(16, 16, 16, 0.816);
  border: 1px solid rgba(214, 214, 214, 0.632);
  border-radius: 10px;
  border-bottom-right-radius: 0px;
  color: aliceblue;
  max-width: 250px;
}
#statuscafe-username {
  z-index: 2000;
  margin-bottom: .5em;
}
#statuscafe-content {
  z-index: 2000;
  margin: 0 1em 0.5em 1em;
}
.guestBook {
  z-index: 1;
  position: fixed;
  bottom: 0;
  left: 10px;
}
.guestBook:hover {
  opacity: 0.70; 
  cursor: pointer;
}
.guestBookContainer {
  z-index: 1;
  display: none;
  position: fixed;
  bottom: 100px;
  left: 120px;
  padding: .5em;
  background-color: rgba(16, 16, 16, 0.816);
  border: 1px solid rgba(214, 214, 214, 0.632);
  border-radius: 20px;
  border-bottom-left-radius: 0px;
  color: aliceblue;
}
.guestBook:hover + .guestBookContainer {
    display: block;
}
