/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
HTML content. To learn how to do something, just try searching Google for questions like
"how to change link color." */
:root{
  --blur: 7px;

  --size: 200px;
  --radius: 10px;
  --radius2: 20px;
}
#containerinator2{

  width: var(--size);
  height: var(--size);
  
  display:flex;
  justify-content:center;
  align-content:center;
}
.happyhappyhappy {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  margin: auto;
  justify-content: center;
  align-items: center;
  text-align:center;
}
body {
  background-color: rgba(0, 70, 20, 1);
  color: rgba(20, 200, 70, 1);
  font-family: Verdana;
  align-items: center;
}
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(70,80,70,0.5);
  backdrop-filter: blur(var(--blur));
  z-index: 100000;
}

header ul{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 20px;
  padding-left: 20px;
}

header ul li{
  position: relative;
  list-style: none;
}

.banner{
  position: relative;
  width: 100%;
  height: 110px;
  background-image: linear-gradient(rgba(128,128,128,0), rgba(128,128,128,0)), url(/Images/Banner.png);
  background-size: cover;
  background-position: center;
}
.leftcontainer{
  width: 200px;
  box-sizing: border-box;
  float: left;
  margin-bottom: 20px;
  margin-right: 20px;
  margin-left: 20px;
}
.leftbox{
  background-color: rgba(0, 110, 30, 1);
  border-color: rgba(10, 160, 50, 1);
  border: 5px;
  border-style: solid;
  overflow: auto;
  width: 100%;
  height: 200px;
  padding: 10px;
  border-radius: var(--radius);
  box-sizing: border-box;
  float: left;
  margin-top: 20px;
  margin-bottom: 20px;
}
.leftblink{
  background-color: rgba(0, 110, 30, 1);
  border: 5px;
  border-color: rgba(10, 160, 50, 1);
  border-style: solid;
  width: 200px;
  padding-bottom: 10px;
  padding-right: 10px;
  padding-left: 10px;
  padding-top: 10px;
  border-radius: var(--radius);
  box-sizing: border-box;
  float: left;
  margin-top: 20px;
  margin-bottom: 20px;
}
.leftboxheightnt{
  background-color: rgba(0, 110, 30, 1);
  border: 5px;
  border-color: rgba(10, 160, 50, 1);
  border-style: solid;
  /*overflow: auto;*/
  width: 100%;
  padding: 10px;
  border-radius: var(--radius);
  box-sizing: border-box;
  float: left;
  margin-top: 20px;
  margin-bottom: 20px;
  
}
.rightcontainer{
  width: 200px;
  box-sizing: border-box;
  float: right;
  margin-bottom: 20px;
  margin-right: 20px;
  margin-left: 20px;
}
.rightbox{
  background-color: rgba(0, 110, 30, 1);
  border: 5px;
  border-color: rgba(10, 160, 50, 1);
  border-style: solid;
  overflow: auto;
  width: 100%;
  height: 200px;
  padding: 10px;
  margin: 20px;
  border-radius: var(--radius);
  box-sizing: border-box;
  float: right;
}
.rightblink{
  background-color: rgba(0, 110, 30, 1);
  border: 5px;
  border-color: rgba(10, 160, 50, 1);
  border-style: solid;
  width: 200px;
  padding-bottom: 10px;
  padding-right: 10px;
  padding-left: 10px;
  padding-top: 10px;
  border-radius: var(--radius);
  box-sizing: border-box;
  float: right;
  margin-top: 20px;
  margin-bottom: 20px;
}
.rightboxheightnt{
  background-color: rgba(0, 110, 30, 1);
  border: 5px;
  border-color: rgba(10, 160, 50, 1);
  border-style: solid;

  width: 200px;
  padding: 10px;
  border-radius: var(--radius);
  box-sizing: border-box;
  float: right;
  margin-top: 20px;
  margin-bottom: 20px;
}
textarea{
  padding:10px;
  max-width:84%;
  background-color: rgba(0, 110, 30, 1);
  border: 5px;
  border-color: rgba(10, 160, 50, 1);
  border-style: solid;
  color: rgba(20, 200, 70, 1);
  
}
.gamebox{
  background-color: rgba(0, 110, 30, 1);
  border: 5px;
  border-color: rgba(10, 160, 50, 1);
  border-style: solid;
  overflow: auto;
  overflow-wrap: anywhere;
  width: 200px;
  height: 200px;
  padding: 10px;
  margin: 20px;
  border-radius: var(--radius);
  box-sizing: border-box;
  float: left;
}
.gameboxheightish{
  background-color: rgba(0, 110, 30, 1);
  border: 5px;
  border-color: rgba(10, 160, 50, 1);
  border-style: solid;
  overflow-y: hidden;
  overflow-wrap: anywhere;
  width: 100%;
  padding: 10px;
  height: 500px;
  border-radius: var(--radius);
  box-sizing: border-box;
  float: left;
  margin-top: 20px;
  margin-bottom: 20px;
}
.newsbox{
  background-color: rgba(0, 110, 30, 1);
  border: 5px;
  border-color: rgba(10, 160, 50, 1);
  border-style: solid;
  overflow: auto;
  height: 400px;
  padding: 10px;
  margin: 20px;
  border-radius: var(--radius);
  box-sizing: border-box;
  float: right;
}
.maintext{
  background-color: rgba(0, 110, 30, 1);
  border: 5px;
  border-color: rgba(10, 160, 50, 1);
  border-style: solid;
  overflow: auto;
  padding: 10px;
  margin: 20px;
  border-radius: var(--radius);
  box-sizing: border-box;
}
.container{
  background-color: rgba(0, 90, 20, 1); 
  border: 5px;
  border-color: rgba(0, 140, 30, 1);
  border-style: solid;
  padding: 10px;
  overflow: hidden;
  max-width: 1000px;
  margin: auto;
  border-radius: var(--radius2);
  box-sizing: border-box;
}
ul.linedlist li{
  border-bottom: 5px dashed rgba(0, 150, 40, 1);
}
.Passwordbox{
  background-color: rgba(0, 90, 20, 1); 
  border: 5px;
  border-color: rgba(0, 140, 30, 1);
  border-style: solid;
  padding: 10px;
  overflow: hidden;
  max-width: 1000px;
  margin: auto;
  border-radius: var(--radius2);
  box-sizing: border-box;
  margin-top: 200px;
  align-items: center;
  justify-content: center;
  display: grid;
}
.passtext{
  background-color: rgba(0, 110, 30, 1);
  border: 5px;
  border-color: rgba(10, 160, 50, 1);
  border-style: solid;
  align-self: center;
  padding: 10px;
  margin: 200px;
  border-radius: var(--radius);
  box-sizing: border-box;
  justify-content:center;
  display: flex;
  flex-direction: column;
  align-items: center;
  
}
.passboxenter{
  
  background-color: rgba(0, 90, 20, 1); 
  border: 5px;
  border-color: rgba(0, 110, 25, 1);
  border-style: solid;
  border-radius: var(--radius);
  overflow: auto;
  padding: 10px;
  margin: 20px;
  box-sizing: border-box;
  
  
}
.guestbook{
  background-color: rgba(0, 150, 40, 1);
  border: 5px;
  border-color: rgba(0, 110, 25, 1);
  border-style: solid;
  overflow: auto;
  float: left;
  padding: 10px;
  margin: 20px;
  height: 500px;
  width: 100%;
  border-radius: var(--radius);
  box-sizing: border-box;
}
a:link.hidelink {
  color: rgba(0, 194, 53, 0);
  background-color: transparent;
  text-decoration: none;
}
a:hover.hidelink {
  color: rgba(0, 194, 53, 0);
  background-color: transparent;
  text-decoration: none;
}
a:visited.hidelink {
  color: rgba(0, 194, 53, 0);
  background-color: transparent;
  text-decoration: none;
}
a:active.hidelink {
  color: rgba(0, 194, 53, 0);
  background-color: transparent;
  text-decoration: none;
}
/*  p.hidelink {
color: rgba(0, 194, 53, 0);
background-color: transparent;
text-decoration: none;
}*/
.linedlist{
  border-bottom: 5px dashed rgba(0, 110, 25, 1);
  
}
a:link, a:not(.topbar-button) {
  color: rgba(10, 160, 40, 1);
  background-color: transparent;
  text-decoration: none;
  transition: .3s;
}
a:visited, a:not(.topbar-button) {
  color: rgba(10, 160, 40, 1);
  background-color: transparent;
  text-decoration: none;
  transition: .3s;
}
a:active, a:not(.topbar-button) {
  color: rgba(10, 160, 40, 1);
  background-color: transparent;
  text-decoration: none;
  transition: .3s;
}
a:hover:not(.topbar-button, .plzdontmesswithme) {
  background:linear-gradient(90deg,rgba(40, 230, 85, 1) 0,rgba(20, 200, 70, 1) 50%,rgba(10, 160, 40, 1) 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-color: transparent;
  text-decoration: none;
  /*font-weight: 1000;*/
    
  transition: .3s;
}

* {
  scrollbar-width: thick;
  scrollbar-color: rgba(10, 140, 40, 1) transparent;
}
.blinkcont{
  background-color: rgba(0, 70, 15, 1);
  border: 5px;
  border-color: rgba(5, 160, 50, 1);
  border-radius: var(--radius);
  border-style: solid;
  overflow: auto;
  width: 300px;
  height: 60px;
  padding: 10px;
  margin: 20px;
  box-sizing: border-box;
  float: left;
  
}
footer{
  text-align: center;
  /*display: flex;
  justify-content: center;*/
  background-color: rgba(0, 110, 30, 1);
  border: 5px;
  border-color: rgba(10, 160, 50, 1);
  border-radius: var(--radius);
  border-style: solid;
  margin-top: 30px;
  padding: 10px;
}
img{
  
  margin-top: 5px;
  margin-bottom: 5px;
}
.tiltboxthing {  
  
  transform-style: preserve-3d;
  perspective: 1000px;
}
.tiltboxthingscroll {  
  
  transform-style: preserve-3d;
  perspective: 1000px;
}
.tiltboxthingblink img {  
  
  transform-style: preserve-3d;
  perspective: 1000px;
}
.tiltboxscroll{
  height: 100%;
  width: 100%;
  overflow: auto;
  position: relative;
  
}
.tiltboxthing p, .tiltboxthing img, .tiltboxthing a, .tiltboxthing h1, .tiltboxthing h2, .tiltboxthing h3, .tiltboxthing h4, .tiltboxthing h5, .tiltboxthing iframe, .tiltboxthing textarea, .tiltboxthing marquee, .tiltboxthing ul, .tiltboxthing li, .tiltboxthing div:not(.js-tilt-glare){
  transform: translateZ(30px)
  
}
.tiltboxthingscroll p, .tiltboxthingscroll img, .tiltboxthingscroll a, .tiltboxthingscroll h1, .tiltboxthingscroll h2, .tiltboxthingscroll h3, .tiltboxthingscroll h4, .tiltboxthingscroll h5, .tiltboxthingscroll iframe, .tiltboxthingscroll textarea, .tiltboxthingscroll marquee, .tiltboxthingscroll ul, .tiltboxthingscroll li, .tiltboxthingscroll div:not(.js-tilt-glare){
  transform: translateZ(30px);
  margin-top: 10px;
  margin-bottom: 10px;
  
}
marquee.tiltboxthing p, marquee.tiltboxthing img, marquee.tiltboxthing a, marquee.tiltboxthing h1, marquee.tiltboxthing h2, marquee.tiltboxthing h3, marquee.tiltboxthing h4, marquee.tiltboxthing h5, marquee.tiltboxthing iframe, marquee.tiltboxthing textarea, marquee.tiltboxthing marquee, marquee.tiltboxthing ul, marquee.tiltboxthing li{
  transform: translateZ(30px)
  
}
.js-tilt-glare{
  
}
.arrow-image{
  width: 27px;
}
.webring-image{
  width: 52px;
}
p.header-button span{
  
  display    : inline;
  text-align : center;  /* do all proportional letter centered */
  font-size: 40px;
  transition:.2s;
  filter     : drop-shadow( 0px 2px black) 
               drop-shadow( 0  -2px black) 
               drop-shadow( 2px 0   black) 
               drop-shadow(-2px 0   black);
}
.header-logo span{
  
  display    : inline;
  text-align : center;  /* do all proportional letter centered */
  font-size: 50px;
  transition:.2s;
  filter     : drop-shadow( 0px 2px black) 
               drop-shadow( 0  -2px black) 
               drop-shadow( 2px 0   black) 
               drop-shadow(-2px 0   black);
}
.splashdiv p span{
  
  display    : inline;
  text-align : center;  /* do all proportional letter centered */
  font-size: 70px;
  transition:.2s;
  filter     : drop-shadow( 0px 2px black) 
               drop-shadow( 0  -2px black) 
               drop-shadow( 2px 0   black) 
               drop-shadow(-2px 0   black);
}
.splashdiv .p1 {
  letter-spacing : -0.8rem;
}
.splashdiv .p2 {
  letter-spacing : -0.4rem;
}
.splashdiv .p3 {
  letter-spacing : -0.4rem;
}
.splashdiv .p4 {
  letter-spacing : -0.8rem;
}
.splashdiv{
  overflow: visible;
  display: grid;

}
p.header-button {
  
  display        : grid;letter-spacing : -0.4rem;font-family    : 'bubbley';width          : fit-content; 
}
.header-logo {
  
  display        : grid;letter-spacing : 0.2rem;font-family    : 'bubbley';width          : fit-content; 
}
@font-face {
  font-family: 'jam';
  src: url('https://fritzfromtechsupport.com/fonts/Jellyjam.otf') format('opentype');
}
@font-face {
  font-family: 'bubbley';
  src: url('https://fritzfromtechsupport.com/fonts/Bubbley.ttf') format('truetype');
}
.buttondiv {
  margin-left: 10px;
  margin-right: 10px;

}
.header-logo:hover span {
  font-size: 60px;
  transition:.2s

}
.buttondiv:hover span {
  font-size: 60px;
  transition:.2s

}



    .imgcont { 
      align-items:center; 
      height:100%;
      aspect-ratio:1/1;
      justify-content:center;
      display:flex;

    }