* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}


/* border-box includes padding and border values 
display: flex and margin: auto 
centers the container vetically and horizontally
*/

/* non-custom elements don't need a pound symbol nor period */

/* header styling test - if good use for other elements for now */

.header {
    background-color: rgba(0,0,0,0.75);
    padding: 15px;
    font-family: "Courier New",Courier,monospace;
    font-size: 14px;
    text-align: center;
    margin: 0;
    color: #ffffff;
}




body {
  background-image: url('/images/Background Flat halftone FX.png');
  background-size: cover;
  background-position: center; 
  background-attachment: fixed;
  background-color: #000000;
  box-shadow: inset 0 0 0 1000px rgba(0,0,0,.6);
  color: #ffffff;
  font-size: 12px;
  font-family: "Courier New",Courier,monospace;  
  text-align: center;
  justify-content: center;
  margin: 5% 0;
}

/*looking into reworking this element entirely */

shadowbox{
background-color: rgba(0,0,0,0.8);
backdrop-filter: blur(10px);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
position: absolute;

width: 84%;
height: 100vh;
}



.pupa a{
    width: 50px;
    height: 100px;
}


/* ---MAIN FLEX--- */
/* Create three unequal columns that floats next to each other */

.column {
  float: left;
  padding: 10px;
}

/* Left and right column */
.column.side {
  width: 25%;
}

/* Middle column */
.column.middle {
  width: 50%;
  padding: 5px;
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .column.side, .column.middle {
    width: 50%;
    margin: 0;
  }
}

@media screen and (max-width: 600px) {
  .column.side, .column.middle {
    width: 100%;
    margin: 0;
  }
}



/* ---GALLERY FLEX--- */ 
/* creates four equal columns that sit next to each other */

.gallerycolumn {
flex: 25%;
-ms-flex: 25%;
-webkit-flex: 25%;
max-width: 25%;
padding: 0 5px;
}

.gallerycolumn img{
margin-top: 10px;
vertical-align: middle;
width: 100%;
}


/* sets row flex */

.galleryrow {

display: flex;
flex-wrap: wrap;
padding: 0 5px;
}



/* responsive layout dependent on device screen width - the OG column element will transform into a two-column layout, then a single-stacked column */

@media screen and (max-width: 800px){
.gallerycolumn {
flex: 50%;
-ms-flex: 50%;
-webkit-flex: 50%;
max-width: 50%;
}
}

@media screen and (max-width: 600px){
.gallerycolumn {
flex: 100%;
-ms-flex: 100%;
-webkit-flex: 100%;
max-width: 100%;
}
}



.footer {
    display: flex;
    flex-wrap: wrap;
    flex: 100%;
    justify-content: center;
    background-color: rgba(0,0,0,0.75);
    padding: 15px;
    font-family: "Courier New",Courier,monospace;
    font-size: 14px;
    text-align: center;
    margin: 0;
    color: #ffffff;
    text-decoration: line-through;
    text-shadow: #ffff80 1px 0 10px;
}



a {  
color: #ffffff;
text-align: center;
text-shadow: #ffff80 1px 0 10px;
}

a:hover {

text-shadow: #ffff80 1px 0 10px,
1px 1px 0 rgba( 0, 0, 0, 0.25);
}