body {
	 margin: 0;
    padding: 0;
}
.site-header {
  top: 0;           /* Sets the point where it sticks */
  z-index: 1000;    /* Keeps it above other content */
  left: 0;
  width: 100%; /* Spans full width */
  color: white;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  margin-bottom: 0;
  height: 150px;
  
background: hsla(171, 33%, 20%, 1);

background: linear-gradient(270deg, hsla(171, 33%, 20%, 1) 0%, hsla(161, 35%, 46%, 1) 50%, hsla(165, 66%, 45%, 1) 100%);

background: -moz-linear-gradient(270deg, hsla(171, 33%, 20%, 1) 0%, hsla(161, 35%, 46%, 1) 50%, hsla(165, 66%, 45%, 1) 100%);

background: -webkit-linear-gradient(270deg, hsla(171, 33%, 20%, 1) 0%, hsla(161, 35%, 46%, 1) 50%, hsla(165, 66%, 45%, 1) 100%);
}
.site-header a {
  color: white;
  text-decoration: none;
}
h2{
	font-size: 30px;
	font-family: monospace;
}
h1 {
	font-size: 50px;
	font-family: 'VCR EAS', sans-serif;
}
.middle-box {
  background-color: #323232; /* Light gray background */   /* Optional border */
  padding: 5px 10px;         /* Small padding for "skinny" look */
  margin: 0px 0;            /* Space above/below box */
  font-size: 14px;       /* Space above and below the box */
  text-align: left;       /* Center text inside */
  width: 100%;
}
body {
            width: 100%;
    background-color: #000;
    color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.container {
  display: flex;       /* Aligns items side-by-side */
  align-items: center; /* Vertically centers text next to image */
  gap: 20px;           /* Adds space between image and text */
}
.logo {
	padding:10px;
}
p {
	font-family: monospace;
	font-size: 17px;
}
h3 {
	font-size: 25px;
	font-family: monospace;
}
* {
  margin: 0;
  padding: 0;
}
body {
  padding: 0px;
  background: #000;
}
.tabinator {
  background: #000;
  padding: 0px;
  font-family: monospace;
  font-size: 20px;
  background-color: #000;
}
.tabinator h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
  background-color: #000;
}
.tabinator input {
  display: none;
  background-color: #000;
}
.tabinator label {
  box-sizing: border-box;
  display: inline-block;
  padding: 15px 25px;
  color: #630909;
  margin-bottom: -1px;
  margin-left: -1px;
  background-color: #000;
}
.tabinator label:before {
  content:'';
  display:block;
  width:100%;
  height:15px;
  background-color:#000;
  position:absolute;
  bottom:-11px;
  left:0;
  z-index:10;  
}
.tabinator label:hover {
  color: #888;
  cursor: pointer;
}
.tabinator input:checked + label {
  position: relative;
  color: #fff;
  background: #000;
  border: 1px solid #630909;
  border-right: 3px solid #630909;
  border-radius: 5px 5px 0 0;
  border-top: solid 3px #630909;
}
.tabinator input:checked + label:after {
  display: block;
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
}
#content1, #content2, #content3, #content4, #content5 {
  display: none;
  border-top: 3px solid #bbb;
  padding: 15px;
  color: #fff;
}
#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4,
#tab5:checked ~ #content5 {
  display: block;
  border-top: solid 3px #630909;
}

.innerbox{
    width: 500px;
    height: 250px;
    background-color: #141414; /* Background of the inner box */
    border: 2px solid #000;
    margin: auto; /* Centers the inner box horizontally within the outer box */
    overflow-y: scroll;
  }
  /* Width of the scrollbar */
.innerbox::-webkit-scrollbar {
  width: 12px;
}

/* Track styling */
.innerbox::-webkit-scrollbar-track {
  background-color: #8c0e0e;
}

/* Thumb styling */
.innerbox::-webkit-scrollbar-thumb {
  background-color: #630909;
  border-radius: 10px;       /* optional: rounds the handle */
  border: 2px solid #450606; /* optional: creates padding around the thumb */
}
