
body {
  background: url("otherGraphics/industrialHell.jpg") no-repeat center center; /* center image */
  background-size: cover;             /* stretch to fill the viewport */
  background-attachment: fixed;       /* keeps it slow when scrolling */
  font-family: Arial, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  cursor: url('guantlets/norm.png'), auto;	
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 30px;
}

p {
  font-size: 16px;
}

body:active 
{
  cursor: url("guantlets/clicked.png"), auto;
}

a
{
  display: inline-block;
  cursor: url('guantlets/norm.png'), auto;	
}

a:active
{
  cursor: url("guantlets/clicked.png"), auto;
}

.containerMain 
{
  width: 800px;                   /* fixed width */
  margin: 0 auto;                 /* centers it */
  border-radius: 25px;
  background: url("otherGraphics/industrialHell1dark.png") repeat center center; /* center image */
  border: 1px solid #000;
  padding: 10px 23px;

  /* Font styles */
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 400; /* default weight */
  color: white;
}

.containerSub1 
{
  border-radius: 12.5px;
  margin: 0;                      /* remove offset */
  border: 1px solid #000;
  padding:  11px 12px;
  
  background: url("otherGraphics/industrialHell2.png") repeat center center; /* center image */
  background-size: cover;
}

.containerSub2
{
  border-radius: 12.5px;
  margin: 0;                      /* remove offset */
  border: 1px solid #000;
  padding: 11px 12px;
  
  background: url("otherGraphics/industrialHell2.png") repeat center center; /* center image */
  background-size: cover;
  
  overflow: scroll; 
  height: 200px; 
}

.topImageWrap {
  text-align: center;   /* horizontal centering */
  line-height: 0;       /* remove small inline gap that causes the 1px shift */
  margin: 0;            /* keep exact vertical position unless you want to change it */
}

/* keep the image exactly as-is */
.topImage {
  display: inline-block; /* preserves natural image size */
  vertical-align: middle; /* safe baseline behaviour if needed */
}

.layout {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; /* space between columns */
}

.sideCol {
  display: flex;
  flex-direction: column;  /* STACK BLINKIES */
  gap: 11px;
  align-items: center;
}

.centerCol {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mainImage {
  display: block;
  max-width: 100%;
}

a img{
  transition: .2s;
}
a img:hover{
  transform: scale(1.02);
  
}

.splitBox {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  gap: 5px; /* total space between left and right */
  box-sizing: border-box;
}

.leftSide,
.rightSide {
  /* take half the width minus half the gap */
  width: calc(50% - 2.5px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Optional padding inside each side */
.leftSide {
  padding: 10px 0px 16.5px 0px;
}

.rightSide {
  padding: 10px 0px 16.5px 10px;
}


