html {
  background-color: #DEDEDE;
  color: blue;
  display: table;
  margin: auto;
  background-image: url(Images/background1.jpg);
  height: calc(100%)
}

body {
  background-color: white;
  color: black;
  font-size: 15px;
  vertical-align: middle;
  width: calc(100%)
}

h1 {
 background-color: white;
 color: red;
 font-size: 35px;
 text-align: center;
}

ul {
  background: white;
  color: black;
  padding: 10px;
  border: 1px solid black;
  font-size: 15px;
}

li {
  margin-left: 10px;
  color: black;
  font-size: 15px;
}

a-href {
 color: pink;
 font-size: 15px;
}

.block {
 display: block;
 border: 2px solid;
}

.highlight {
 background-color: yellow; 
}

.outer {
  border: 2px solid black;
  position: relative;
}

.box {
  padding: 10px;
  text-align: center;
  width: calc(10% - 30px)
}

button {
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid rgb(200 200 0 / 60%);
  background-color: rgb(0 217 217 / 60%);
  color: rgb(100 0 0 / 100%);
  box-shadow: 1px 1px 2px rgb(0 0 200 / 40%);
  border-radius: 10px;
  padding: 3px 10px;
  cursor: pointer;
}

textarea { /*<textarea readonly> to make it uneditable  */
  width: 200px; /* Makes the textarea take the full width of its container */
  height: 150px; /* Sets a fixed height */
  padding: 2px; /* Adds space inside the border */
  box-sizing: border-box; /* Ensures padding/border are included in the width/height calculations */
  border: 1px solid #ccc; /* Styles the border */
  border-radius: 1px; /* Rounds the corners */
  background-color: #f8f8f8; /* Sets a light gray background color */
  font-size: 12px; /* Sets the font size */
  resize: none; /* Allows resizing only vertically (disable the "grabber" entirely with 'none') */
  line-height: 1; /* Sets line spacing */
}

label {
  display: block; /* Ensures the label appears above the textarea */
  margin-bottom: 10px; /* Adds space below the label */
}

.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.bitter-uniquifier {
  font-family: "Bitter", serif;
  font-weight: 900;
  font-style: normal;
}

.special {
 color: white;
 background: black;
}

.layout {
  width: 100%;

  display: grid;
  grid:
    "sidebar body rightbar" 1fr
    / auto 1fr;
  gap: 4px;
}
.sidebar { grid-area: sidebar; }
.body { grid-area: body; }
.rightbar { grid-area: rightbar; }
.img-with-text {
  grid-area: img;
  text-align: center;
  width: 50;
  position: fixed;
  right: 0;
  }

.scroller { /**/
  width: 150px;
  height: 150px;
  font-size: 13px;
  overflow: auto scroll;
  overflow-x: auto;
  overflow-y: scroll;
  border: 3px black;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-image-slice: 100%;
  border-image-source: none;
  border-image-width: 1;
  border-style: solid;
  background: white;
  background-color: white;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  padding: 10px;
}

.scrollerbuttons { /**/
  width: 475px;
  height: 250px;
  font-size: 13px;
  overflow: auto scroll;
  overflow-x: auto;
  overflow-y: scroll;
  border: 3px black;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-image-slice: 100%;
  border-image-source: none;
  border-image-width: 1;
  border-style: solid;
  background: white;
  background-color: white;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  padding: 10px;
}

.img {
 text-align: center;
 width: 50;
 position: fixed;
 left: 0;
}
.img-with-text img {
  position: static;
  display: block;
  margin: 0 auto;
}

iframe:focus {
  outline: none;
}

iframe[seamless] {
  display: block;
}