/* 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." */
   
.AllContainers {
  top: 50%;
  bottom: 50px;
  left: 1%;
  right: 420px;
  position: relative;
  justify-content: center;
  padding: 10px 20px; 
  max-width: 1100px;
  margin: 0 auto; 
}
   
.MainContainer {
  width: 1100px;
  height: 338px;
}

.BodyContainer {
  width: 1100px;
  height: 30px;  
  
}

.TV {
  bottom: 20px;
  top: 30px;
  left: 20px;
  right: 20px;
  position: relative;
  pointer-events: none;
  margin-top: 40px;
  z-index: 10;
}

.YTvideo {
  width: 540px;
  height: 295px;
  right: 50px;
  left: 50px;
  bottom: 410px;
  position: relative;
  z-index: 1;
}

.thumbnail {
  width: 540px;
  height: 295px;
  right: 50px;
  left: 50px;
  bottom: 410px;
  position: relative;
  display: none;
  z-index: 2;
}

.BGBox {
  width: 1100px;
  height: 2000px;
  bottom: 20px;
  left: 420px;
  right: 420px;
  margin-top: -330px;
  background-color: #120e0d;
  z-index: 1;
  
  background-image: url(Body.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.ImageScaling {
  margin-left: 10px;
  margin-top: 10px;
}

.MainText {
  color: white;
  font-family: "ActionMan";
  height: 5px;
  left: 35px;
  right: 35px;
}

.Asshole {
  display: flex;
}

a {
	text-decoration: none;
	background-image: none;
	border: none;
}

.Blocks:hover {
  background-color: var(--hovercolor,white);
  
}


.Blocks {
  color: white;
  outline: black;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 0px;
  font-family: "ActionMan";
  text-align: center;
  line-height: 72px;
  font-size: 30px;
  text-shadow: 
    4px 1px 0 #000;
  
  width: var(--x,120px);
  height: var(--y,72px);
  top: 200px;
  left: 450px;
  bottom: 30px;
  position: relative;
  background-color: var(--color,red);
  
  background-image: url(Graphics/Buttons/BoxTexture.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.InfoBlocks {
  color: white;
  outline: black;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 10px;
  font-family: "ActionMan";
  text-align: center;
  line-height: 60px;
  padding: 50px;
  font-size: 40px;
  text-shadow: 
    4px 1px 0 #000;
  
  box-sizing: border-box;
  width: var(--x,120px);
  height: var(--y,72px);
  top: var(--top,100px);
  left: var(--left,600px);
  bottom: var(--bottom,30px);
  position: relative;
  background-color: var(--color,red);
  
  background-image: url(Graphics/Buttons/BoxTexture.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}





body {
  background-color: black;
  
  /* Background Image */
  background-image: url(background.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  
  color: white;
  font-family: "ActionMan";
  
}