
body {
  background: url("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('norm.png'), auto;	
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 30px;
}

p {
  font-size: 16px;
}

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

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

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

.containerMain 
{
  width: 800px;                   /* fixed width */
  margin: 0 auto;                 /* centers it */
  border-radius: 25px;
  background: url("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:  0px 12px;
  
  background: url("industrialHell2.png") repeat center center; /* center image */
  background-size: cover;
}

.containerSub2
{
  border-radius: 12.5px;
  margin: 0;                      /* remove offset */
  border: 1px solid #000;
  padding: 0px 12px;
  
  background: url("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%;
  padding: 0px;
  margin: 0px;
}

.leftSide{
  width: 50%;        /* perfect half */
  box-sizing: border-box;
  padding: 10px 16.5px 23px 10px;     /* optional spacing */
  display: flex;
  flex-direction: column;
}

.rightSide {
  width: 50%;        /* perfect half */
  box-sizing: border-box;
  padding: 10px 23px 16.5px 10px;     /* optional spacing */
  display: flex;
  flex-direction: column;
}
