.box {
  max-width: 80%;
  margin: 50px auto;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 250px minmax(0, 1fr);
}
@font-face {
  font-family: headerFont;
  src: url(Lowell.otf);
}
@font-face {
  font-family: mainFont;
  src: url(NotesSans.otf);
}

header, nav, main, footer, stats, div1, div2, stamps, div3, div4 {
  border: limegreen 2px dashed;
}

body {
  background-image: url("bg.jpg");


  padding: 20;
    height: 100%; 
  margin: 0;
  background-color: black;
  color:  rgb(37, 146, 52);
  
}

*::-moz-selection {
  background: #10c500;
  color: #ffffff;
}
*::-webkit-selection {
  background: #10c500;
  color: #ffffff;
}

a {
  color: rgb(37, 146, 52);
  text-decoration: none;
}

a:hover {
  color: limegreen;
}

a:active {
  color: rgb(0, 0, 0);
}


.a2 {
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.a2:hover {
  color: limegreen;
}

.a2:active {
  color: rgb(255, 255, 255);
}



header {
  font-family: headerFont;
  font-size: 60px;
  text-align: center;
  grid-row: 1 / 2;
  grid-column: 1 / 3;
 background-color: rgba(0, 0, 0, 0.952);
}

h1 {
  font-size: 30px;
   line-height: 0.2;
   font-family: headerFont;

}
 .image-left {
            float: left;
            margin-right: 15px;
            border: limegreen 2px dashed;
        }

h4 {
  color: whitesmoke;
}

p {
  color: white;
   text-align: center;
}


li {
  font-size: 20px;
  line-height: 0.5;
   

}

ul {
  padding: 0;
}

ul li::marker {
  content: none;
}

nav {
  font-family: headerFont;
  font-size: 35px;
  grid-row: 2 / 3;
  grid-column: 1 / 2;
  height: max-content;
  background-color: rgba(0, 0, 0, 0.952);
 padding-left: 15px;
 padding-top: 10px;
  padding-bottom: 10px;
}

stats {
 font-family: mainFont;
  grid-row: 2 / 4 ;
  grid-column: 3 / 4;
  height: max-content;

 background-color: rgba(0, 0, 0, 0.952);
 padding: 20px 60px 20px 20px;

}

main {
  font-family: mainFont;
  grid-row: 2 / 3 ;
  grid-column: 2 / 3;
  height: max-content;
  font-size: 20px;
display: inline-block;
 background-color: rgba(0, 0, 0, 0.952);
 padding: 20px 20px 20px 20px;

}



footer {
 position: sticky;
  font-family: mainFont;
  left: 0;
  bottom: 0;
  width: 100%;
 background-color: rgba(0, 0, 0, 0.952);
  color: rgb(0, 0, 0);
  text-align: center;
    height: max-content;
  
}


 /* Style the Image Used to Trigger the Modal */
#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}
/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}



/* Create four equal columns that floats next to eachother */
.column {
  display: inline-block;
  max-width: 25%;
  padding: 0 4px;
  white-space: nowrap;
}

.column img {
  display: inline-block;
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 10;
  width: 90%;
  max-width: 700px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 55px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Caption text */
.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

img.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

* {
  box-sizing: border-box;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}



.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.mySlides {
  display: none;
}

.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

img {
  margin-bottom: -4px;
}

.caption-container {
  text-align: center;
 
  padding: 2px 16px;
  color: white;
}

.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}


.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.377), 0 6px 20px 0 rgba(0, 0, 0, 0.418);
}



/* Add a grey background color on mouse-over */
.btn:hover {
  background-color: #ddd;
}

/* Add a dark background color to the active button */
.btn.active {
  background-color: #666;
   color: white;
}

.clr {
	clear: both;
}
.gallery-wrap {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.gallery-wrap h1 {

	color: #00c50a;
	text-transform: uppercase;
  font-weight: bold;
  font-size: 50px;
}

.gallery-wrap4 {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.gallery-wrap4 h1 {

	color: #000000;
	text-transform: uppercase;
  font-weight: bold;
  font-size: 50px;
}

label {
	width: 15%;
	display: inline-block;
	background: #00c50a;
	color: #000000;
	letter-spacing: 2px;
	padding: 10px 0;
	margin: 0 8px;
	margin-bottom: 30px;
	border-radius: 5px;
	cursor: pointer;
	transition: .5s;
    font-size: 20px;
}
input[type="radio"] {
	display: none;
  

}
input[type="radio"]:checked + label {
	background: #0c3612;
	color: #00ee3b;
    font-size: 20px;
}
input[type="radio"][id="draw"]:checked ~ .sketch,
input[type="radio"][id="draw"]:checked ~ .mtl {
  width: 0;
	height: 0;
	padding: 0;
	margin: 0;
	opacity: 0;
	transition: .5s;
}

input[type="radio"][id="sketch"]:checked ~ .draw,
input[type="radio"][id="sketch"]:checked ~ .mtl {
  width: 0;
	height: 0;
	padding: 0;
	margin: 0;
	opacity: 0;
	transition: .5s;
}

input[type="radio"][id="mtl"]:checked ~ .draw,
input[type="radio"][id="mtl"]:checked ~ .sketch {
  width: 0;
	height: 0;
	padding: 0;
	margin: 0;
	opacity: 0;
	transition: .5s;
}


input[type="radio"][id="draw4"]:checked ~ .sketch4,
input[type="radio"][id="draw4"]:checked ~ .mtl {
  width: 0;
	height: 0;
	padding: 0;
	margin: 0;
	opacity: 0;
	transition: .5s;
}

input[type="radio"][id="sketch4"]:checked ~ .draw4,
input[type="radio"][id="sketch4"]:checked ~ .mtl4 {
  width: 0;
	height: 0;
	padding: 0;
	margin: 0;
	opacity: 0;
	transition: .5s;
}

input[type="radio"][id="mtl"]:checked ~ .draw4,
input[type="radio"][id="mtl"]:checked ~ .sketch4 {
  width: 0;
	height: 0;
	padding: 0;
	margin: 0;
	opacity: 0;
	transition: .5s;
}

h2 {
  float: left;
  font-size: 15px;
}

h4 {
   float: center;
}

.avi-container:hover img {
  	transform: scale(0.8);
	transition: .7;
}




.gallery-image {
	width: 24.6%;
	height: 300px;
	float: left;
	margin: .2%;
	position: relative;
	overflow: hidden;
	transition: .8s;
	cursor: pointer;
}
.gallery-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .5s;
}
.gallery-image:hover img {
	transform: scale(1.1);
	transition: .5s;
}

.gallery-image4 {
	width: 24.6%;
	height: 300px;
	float: left;
	margin: .2%;
	position: relative;
	overflow: hidden;
	transition: .8s;
	cursor: pointer;
}
.gallery-image4 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .5s;
}
.gallery-image4:hover img {
	transform: scale(1.1);
	transition: .5s;
}
.lb-overlay {
	width: 0px;
	height: 0px;
	position: fixed;
	overflow: auto;
	left: 0px;
	top: 0px;
	padding: 0px;
	z-index: 99;
	text-align: center;
	background: rgba(000,000,000,0.9);
}
.lb-overlay > div {
	position: relative;
	color: rgba(27,54,81,0.8);
	width: 550px;
	height: 80px;
	margin: 40px auto 0px auto;
	text-shadow: 0px 1px 1px rgba(255,255,255,0.6);
}
.lb-overlay a.lb-close {
	background: rgba(255,255,255,0.9);
	z-index: 1001;
	color: #444;
	position: absolute;
	top: 30px;
	right: 5%;
	font-size: 18px;
	line-height: 30px;
	text-align: center;
	width: 30px;
	height: 30px;
	overflow: hidden;
	margin-left: -25px;
	opacity: 0;
	filter: alpha(opacity=0); /* internet explorer */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=0)"; /*IE8*/
	-webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
	box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
	text-decoration: none;
	font-weight: 600;
}
.lb-overlay img {
	/* height: 100%; For Opera max-height does not seem to work */
	max-height: 100%;
	position: relative;
	opacity: 0;
	filter: alpha(opacity=0); /* internet explorer */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=0)"; /*IE8*/
	-webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.3);
	-moz-box-shadow: 1px 1px 4px rgba(0,0,0,0.3);
	box-shadow: 0px 2px 7px rgba(0,0,0,0.2);
	-webkit-transition: opacity 0.5s linear;
	-moz-transition: opacity 0.5s linear;
	-o-transition: opacity 0.5s linear;
	-ms-transition: opacity 0.5s linear;
	transition: opacity 0.5s linear;
}
.lb-prev, .lb-next {
	text-indent: -9000px;
	position: absolute;
	top: -350px;
	width: 50px;
	height: 50px;
	left: 50%;
	opacity: 0.8;
	filter: alpha(opacity=80); /* internet explorer */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=80)";
}
.lb-prev:hover, .lb-next:hover {
	opacity: 1;
	filter: alpha(opacity=99); /* internet explorer */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=99)";
}
.lb-prev {
	margin-left: -500px;
	background: transparent url(../images/arrows.png) no-repeat top left;
}
.lb-next {
	margin-left: 500px;
	background: transparent url(../images/arrows.png) no-repeat top right;
}
.lb-overlay:target {
	width: auto;
	height: auto;
	bottom: 0px;
	right: 0px;
	padding: 40px 40px 40px 40px;
}
.lb-overlay:target img, .lb-overlay:target a.lb-close {
	opacity: 1;
	filter: alpha(opacity=99);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=99)";
}
 x:-o-prefocus, .lb-overlay img {
 height: 100%;
}






.filterDiv {
  float: left;

  width: 200px;
  height: 200px;
  line-height: 200px;
  text-align: center;
  margin: 2px;
  display: none;
  
}

.show {
  display: block;
}

.container {
  margin-top: 20px;
  overflow: hidden;
  
	float: left;
	position: relative;

	transition: .8s;
	cursor: pointer;
}

/* Style the buttons */
.btn {
   border-radius: 15px;
  border: none;
  outline: none;
  padding: 12px 16px;
   background: #000000;
	color: #00ee3b;
  cursor: pointer;
}

.btn:hover {
  color: #000000;
	background: #00ee3b;

}

.btn.active {
  color: rgb(0, 0, 0);
	background: #00ee3b;

}

.info {
    margin-top: 0px;
    width: 100%;
    text-align: center;
    color: lime;
}


.info h3 {
    margin: 0;
    color: var(--default-text);
    font-size: 20px;

    transition: ease-in 0.2s, ease-out 0.2s;
}

.info h3:hover {
    color: var(--secondary);
}

/* Info description */

.info-deets {
    margin: 0;
 
    font-size: 10px;
    color: seashell;
}

.infodesc {
    margin: 0;
     color: seashell;
    font-size: 14px;
 
}

div1 {
  font-family: mainFont;
  font-size: 20px;
width: 61%;
  height: max-content;
  display: block;
 background-color: rgba(0, 0, 0, 0.952);
 padding: 20px 20px 20px 20px;
}

divh1 {
   font-family: headerFont;
  font-size: 50px;
  
  text-align: center;
}

div2 {
 font-family: mainFont;
width: 25%;
  height: max-content;
  display: block;
 background-color: rgba(0, 0, 0, 0.952);

position:absolute; left:65%; top:15%;
text-align: center;
  font-size: 30px;
   line-height: .5;
}

div3 {
 font-family: mainFont;
width: 25%;
  height: max-content;
  display: block;
 background-color: rgba(0, 0, 0, 0.952);
 padding: 30px 30px 10px 20px;
position:absolute; left:65%; top:55%;
text-align: center;
  font-size: 30px;
   line-height: .5;
   
}

div4 {
   font-family: mainFont;
width: 14%;
  height: max-content;
  display: block;
 background-color: rgba(0, 0, 0, 0.952);
 padding: 20px 20px 10px 10px;
position:absolute; left:9%; top:59%;
text-align: center;
  font-size: 30px;
   line-height: .5;
}

ul2 {
 
  padding: 0;
}

li2 {
   font-size: 20px;

}



.title-bar {
        background:linear-gradient(90deg, rgb(0, 128, 11), rgb(62, 255, 62), rgb(0, 0, 0));
    }
 
    .player {
        width:fit-content;
        border: black solid 1px;
        border-width: 1px 0px 0px 1px;
        margin-left:auto;
        margin-right:auto;
    }
 
    .controlimg:hover {
        cursor:help;
    }

    input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
}
 
input[type="range"]:focus {
  outline: none;
}
 
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 21px;
  width: 11px;
  background: svg-load("https://raw.githubusercontent.com/jdan/98.css/main/icon/indicator-horizontal.svg");
  transform: translateY(-8px);
  box-shadow: none;
  border: none;
}
 
input[type="range"].has-box-indicator::-webkit-slider-thumb {
  background: svg-load("https://raw.githubusercontent.com/jdan/98.css/main/icon/indicator-rectangle-horizontal.svg");
  transform: translateY(-10px);
}
 
input[type="range"]::-moz-range-thumb {
  height: 21px;
  width: 11px;
  border: 0;
  border-radius: 0;
  background: svg-load("https://raw.githubusercontent.com/jdan/98.css/main/icon/indicator-horizontal.svg");
  transform: translateY(2px);
}
 
input[type="range"]::-moz-range-thumb {
  background: url("https://raw.githubusercontent.com/jdan/98.css/main/icon/indicator-horizontal.svg");
  border: 0;
  border-radius: 0;
  height: 21px;
  transform: translateY(2px);
  width: 11px;
  }
 
input[type="range"].has-box-indicator::-moz-range-thumb {
  background: svg-load("https://raw.githubusercontent.com/jdan/98.css/main/icon/indicator-rectangle-horizontal.svg");
  transform: translateY(0px);
}
 
input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 2px;
  box-sizing: border-box;
  background: black;
  border-right: 1px solid grey;
  border-bottom: 1px solid grey;
  box-shadow: 1px 0 0 white, 1px 1px 0 white, 0 1px 0 white, -1px 0 0 darkgrey,
    -1px -1px 0 darkgrey, 0 -1px 0 darkgrey, -1px 1px 0 white, 1px -1px darkgrey;
}
 
input[type="range"]::-moz-range-track {
  width: 100%;
  height: 2px;
  box-sizing: border-box;
  background: black;
  border-right: 1px solid grey;
  border-bottom: 1px solid grey;
  box-shadow: 1px 0 0 white, 1px 1px 0 white, 0 1px 0 white, -1px 0 0 darkgrey,
    -1px -1px 0 darkgrey, 0 -1px 0 darkgrey, -1px 1px 0 white, 1px -1px darkgrey;
}
 
button,input,label,option,select,table,textarea,ul.tree-view{-webkit-font-smoothing:none;font-family:"Pixelated MS Sans Serif",Arial;font-size:11px}h1{font-size:5rem}h2{font-size:2.5rem}h3{font-size:2rem}h4{font-size:1.5rem}u{border-bottom:.5px solid #222;text-decoration:none}button,input[type=reset],input[type=submit]{border:none;border-radius:0;box-sizing:border-box;color:transparent;min-height:23px;min-width:75px;padding:0 12px;text-shadow:0 0 #222}.vertical-bar,button,input[type=reset],input[type=submit]{background:silver;box-shadow:inset -1px -1px #0a0a0a,inset 1px 1px #fff,inset -2px -2px grey,inset 2px 2px #dfdfdf}.vertical-bar{height:20px;width:4px}button:not(:disabled):active,input[type=reset]:not(:disabled):active,input[type=submit]:not(:disabled):active{box-shadow:inset -1px -1px #fff,inset 1px 1px #0a0a0a,inset -2px -2px #dfdfdf,inset 2px 2px grey;text-shadow:1px 1px #222}@media (not(hover)){button:not(:disabled):hover,input[type=reset]:not(:disabled):hover,input[type=submit]:not(:disabled):hover{box-shadow:inset -1px -1px #fff,inset 1px 1px #0a0a0a,inset -2px -2px #dfdfdf,inset 2px 2px grey}}button:focus,input[type=reset]:focus,input[type=submit]:focus{outline:1px dotted #000;outline-offset:-4px}button::-moz-focus-inner,input[type=reset]::-moz-focus-inner,input[type=submit]::-moz-focus-inner{border:0}:disabled,:disabled+label,input[readonly],input[readonly]+label{color:grey}:disabled+label,button:disabled,input[type=reset]:disabled,input[type=submit]:disabled{text-shadow:1px 1px 0 #fff}
 
.title-bar-controls button {border:none;border-radius:0;box-sizing:border-box;color:transparent;min-height:23px;min-width:75px;padding:0 12px;text-shadow:0 0 #222}
 
.title-bar-controls button {background:silver;box-shadow:inset -1px -1px #0a0a0a,inset 1px 1px #fff,inset -2px -2px grey,inset 2px 2px #dfdfdf}
 
.title-bar-controls button:not(:disabled):active {box-shadow:inset -1px -1px #fff,inset 1px 1px #0a0a0a,inset -2px -2px #dfdfdf,inset 2px 2px grey;text-shadow:1px 1px #222}
 
@media (not(hover)){
	button:not(:disabled):hover {
    box-shadow:inset -1px -1px #fff,inset 1px 1px #0a0a0a,inset -2px -2px #dfdfdf,inset 2px 2px grey}
}
 
.title-bar-controls button:focus {outline:1px dotted #000; outline-offset:-4px}
.title-bar-controls button::-moz-focus-inner {border:0}
 
 
@font-face {
  font-family: "Pixelated MS Sans Serif";
  src: url("https://files.catbox.moe/1za99g.woff") format("woff");
  src: url("https://files.catbox.moe/8fwbkl.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
 
@font-face {
  font-family: "Pixelated MS Sans Serif";
  src: url("https://files.catbox.moe/z7csle.woff") format("woff");
  src: url("https://files.catbox.moe/moqhx6.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
 
 
.window, .title-bar {
  font-family: "Pixelated MS Sans Serif", Arial;
  -webkit-font-smoothing: none;
  font-size: 11px;
}
 
.window {
  box-shadow: inset -1px -1px #0a0a0a,
    inset 1px 1px #dfdfdf, inset -2px -2px #808080,
    inset 2px 2px #ffffff;
  background: #c0c0c0;
  padding: 3px;
  width:260px;
}
 
.title-bar {
  padding: 3px 2px 3px 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
 
.title-bar-text {
  font-weight: bold;
  color: white;
  letter-spacing: 0;
  margin-right: 24px;
}
 
.title-bar-controls {
  display: flex;
}
 
.title-bar-controls button {
  padding: 0;
  display: block;
  min-width: 16px;
  min-height: 14px;
}
 
.title-bar-controls button:active {
  padding: 0;
}
 
.title-bar-controls button:focus {
  outline: none;
}
 
.title-bar-controls button[aria-label=Minimize]{
background-image:url("https://raw.githubusercontent.com/jdan/98.css/main/icon/minimize.svg");
background-position:bottom 3px left 4px;
background-repeat:no-repeat}
 
.title-bar-controls button[aria-label=Maximize]{
background-image:url("https://raw.githubusercontent.com/jdan/98.css/4a2282dd9170cabf730fb5803d1153d86b2e94e3/icon/maximize.svg");
background-position:top 2px left 3px;
background-repeat:no-repeat}
 
.title-bar-controls button[aria-label=Close]{
background-image:url("https://raw.githubusercontent.com/jdan/98.css/main/icon/close.svg");
background-position:top 3px left 4px;
background-repeat:no-repeat;
margin-left:2px}
 
.window-body { margin:0px; height:98px; }
 
 
 
input[type=range] {
        -webkit-appearance: none;
        appearance:none;
        width: 100%;
    }
 
    input[type=range]:focus {
        outline: none;
    }
 
    /* settings for chrome browsers */
    input[type=range]::-webkit-slider-runnable-track {
        width: 100%;
        height: 2px; /* thickness of seeking track */
        cursor: help;
    }
 
 
    /* settings for firefox browsers */
    input[type=range]::-moz-range-track {
        width: 100%;
        height: 2px; /* thickness of seeking track */
        cursor: help;
    }
 
    .flex {display: flex;}
 
    .titlebaricon { height:14px; width:14px;}
 
 
    .songtitlewindow {
        background-color:#fff;
        box-shadow:inset -1px -1px #fff,inset 1px 1px grey,inset -2px -2px #dfdfdf,inset 2px 2px #0a0a0a;
    }
 
    #musicplayer {
        border:2px solid silver; /* border around player */
        border-width: 2px 0px 0px 0px;
        width:160px; /* width of the player */
    }
 
    #imagestyle {
        background:silver; /* background color of player */
        border:2px solid silver; /* border around player */
        width:95px; /* width of the player */
        height:95px;
        box-shadow:inset -1px -1px #fff,inset 1px 1px grey,inset -2px -2px #dfdfdf,inset 2px 2px #0a0a0a;
    }
 
    .ic {
    	width:90px;
        position:relative;
        bottom:1px;
        right:1px;
        overflow:hidden;
        padding:2px;
        border:2px solid transparent;
    }
 
    .songtitlearrow {
        background-size:100%;
        background-repeat:no-repeat;
        background-image:url(https://files.catbox.moe/f5e8np.png);
        height:21px;
        width:21px;
        position:relative;
        top:2px;
        left:-2px;
        border:0px solid transparent;
        border-width:0px 0px 0px 0px;
    }
 
    .songtitle {
        padding:5px; /* padding around song title */
        border-bottom:0px; /* border under song title */
        display:block;
        font-family:Pixelated MS Sans Serif;
    }
 
    .controls {
        font-size:18px !important; /* size of controls */
        text-align:center;
        width:100%;
        position:relative;
        bottom:10px;
    }
 
    .controls td {
        padding:8px 5px 0px 5px; /* padding around controls */
    }
 
    button {
        min-width:40px;
    }
 
    .seeking {
        background-color:#c0c0c0; /* background color of seeking bar */
        display:flex;
        justify-content: space-evenly;
        padding:14px; /* padding around seeking bar */
    }
 
    .current-time {
        padding-right:5px;
    }
 
    .total-duration {
        padding-left:5px;
    }
 
    .controlimg {
    height:15px;
    width:15px;
    }

.stamps {
    font-family: headerFont;
  font-size: 35px;

display: inline-block;
  height: max-content;
  background-color: rgba(0, 0, 0, 0.952);
  padding: 20px 20px 20px 20px;

}

.doll {
top: 80%;
left: 80%;
position: fixed;
}

