/* 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." */

header {
animation-name: floating; 
animation-duration: 8s; 
animation-iteration-count: infinite; 
animation-timing-function: ease-in-out;
} 

@keyframes floating { 
0% { 
transform: translate(0,  0px); 
} 

50%  { 
transform: translate(0, 5px); 
} 

100%   {
transform: translate(0, -0px); 
} 
}

body {
  background-image: url(/redstars1.gif);
  color: white;
  font-family: Verdana;
  margin-left: 150px;
  margin-right: 150px;
  transform:scale(1.0);
}

h1 {
color: #FFFFFF;
}

.die {
  color: white;
  background-color: red;
  width: 310px;
  height: 80px;
  float: left;
  border-radius: 0px;
  position: sticky;
  top: 0;
  font-size:19px;
}

.DIE2 {
margin-top: -15px;
margin-left: 5px;
}
.HELP {
  font-size: 18px;
 -webkit-text-stroke: 0.2px black;
}

.stuff {
  background-image: url(/overlayBG4.png);
  width: 70%;
  height: 1800px;
  margin: auto;
  border: 6px solid red;   
  
}

.HOLDER {
 border: 5px solid red;
 background-color: red;
 margin-top: -17px;
 height: 40px;
}


.IHATECODINGMYWEBSITE {
  -webkit-text-stroke: 0.7px red;
  
  border: 5px solid red;
  border-color: red;
  border-radius: 2px;
  background-image: url(/background3.png);
  width: 460px;
  height: auto;
  margin-left: 10px;
  margin-top: -58px;
}

ul {
  list-style-type: none;
  margin: 26.01px;
  padding: 0;
  overflow: hidden;
  background-color: #DE0000;
  border: 5px solid #A30000;
  border-radius: 2px;
  background-image: linear-gradient(red, black);
  display: flex;
}

li {
  float: left;
  border-right: 4px solid #A30000;
  border-left: 4px solid #A30000;
  height: 125px;
}

li a {
  display: block;
  color: white;
  text-align: center;
  text-decoration: none;
  font-family: Georgia;
  font-size: 48px;
  padding: 35.2px;
  padding-right: 135.2px;
  padding-left: 135.2px;
}

.navibar {
 border: 5px; 
}

/* Change the link color to #111 (black) on hover */
li a:hover {
background-image: linear-gradient(#620000, black);
}

li a:hover:not(.active) {
background-image: linear-gradient(#620000, black);
}

.active {
background-image: linear-gradient(#740000, black);
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 2 2 2px red;
  background-color: red;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #700000;
  border-radius: 10px;
}

.SCROLLBOX2 {
height:85px;
width:262px;
overflow:auto;
background-color: red;
border: 2px solid red;
border-radius: 5px;
color:white;
scrollbar-base-color:black;
font-family:serif;
padding:0px;
float:right;
margin-left:300px;
margin-right:80px;
margin-top:30px;
}

#text {
-webkit-text-stroke: 0px red; 
margin-left: 10px;
margin-top: -0px;
color:white;
font-size:50px;
border: 5px solid red;
background-color: red;
border-radius: 2px;
width: 428px;
font-family: Garamond;
padding-left: 32px;
}

.buttons {
 margin-top: -20px; 
   display: flex;
}

.chat {
 margin-right: 7px;
 margin-top: 20px;
 float: right;
}

.buttonholder {
height:55px;
width:120px;
background-color: #8C0000;
border: 5px  solid red;
border-radius: 1px;
color:white;
font-family:serif;
padding:0px;
float:left;
margin-left:160px;
margin-top:55px;
}

.buttontitle {
 margin-top: -12px;
 text-align: center;
 font-family: cursive;
 font-size: 13px;
}

.buttonthing {
margin-top: -11px;
margin-left: 16px;
}

.buttonholder2 {
height:100px;
width:272px;
background-color: #8C0000;
border: 5px  solid red;
border-radius: 1px;
color:white;
font-family:serif;
padding:5px;
float:left;
margin-top: 125px;
margin-left: -211px;
}


iframe {
  border: 5px solid red;
}

#footer buttonholder2 {
    line-height: 30px;
    text-decoration: none;
}

.playercontainer {
width: 200px;
height: 140px;
border: 5px solid red; 
border-radius: 1px;
margin-left: -100px;
margin-top: -1512px;
font-family: cursive;
color: red;
background-image: url(/overlayBG3.png);
-webkit-text-stroke: 0.8px black;
}

audio {
 float:left;
 margin-left: 0px;
 margin-top: -1475px;
 width: 200px;
}

.AD1 {
margin-left: -140px;
margin-top: -1800px;
  width: 50px;
  height: auto;
  position: absolute;
}

.AD1IMAGE {
   max-width: 100%;
  height: auto;
  position: sticky;
}

.AD-TEXT {

}
.top-centered {
   position: absolute;
  top: 30%;
  left: 288%;
  transform: translate(-50%, -50%); 
  font-size: 25px;
}

.centered1 {
     position: absolute;
  top: 40%;
  left: 288%;
  transform: translate(-50%, -50%); 
  font-size: 25px;
}

.centered2 {
     position: absolute;
  top: 50%;
  left: 288%;
  transform: translate(-50%, -50%); 
  font-size: 25px;
}

.bottom-centered {
     position: absolute;
  top: 60%;
  left: 288%;
  transform: translate(-50%, -50%); 
  font-size: 25px;
}




















