/* squiggly diggly background */

body {
  background: 
  linear-gradient(135deg, black 25%, transparent 25%) -50px 0,
  linear-gradient(225deg, black 25%, transparent 25%) -50px 0,
  linear-gradient(315deg, black 25%, transparent 25%),
  linear-gradient(45deg, black 25%, transparent 25%);	
  background-size: 2em 2em;
  background-color: #232323;
  background-attachment: fixed;
}

/* color stuff white */

h1 {
  color: white;
}

div {
  color: white;
}

a {
  color: white;
}

h4 {
  color: white;
}

/* making these things red with a half-transparent black background */

#header {
  color: red;
  background-color: rgba(1,1,1,0.5);
  border: solid 2px red;
}

#hSub {
  color: red;
  background-color: rgba(1,1,1,0.5);
  border: solid 2px red;
}

.box.blobs {
  background-color: red
}

.tableLeft{background-color: red; color: black}
.tableRight{background-color: #A00; color: white}


.rightHead{
  color: red;
  background-color: rgba(1,1,1,0.5);
  border: solid 2px red;
}

.boxHead{
  color: red;
  background-color: rgba(1,1,1,0.5);
  border: solid 2px red;
}


#box fwiends{
  color: red;
  background-color: rgba(1,1,1,0.5);
  border: solid 2px red;
}

#blogs {
  color: red;
  background-color: rgba(1,1,1,0.5);
  border: solid 2px red;
}

/* other red and black styl*d things */

.contactInfoTop {
  background-color: red;
}

/* changing the site title ever so slightly (stolen from hanabi) */

#siteTitle {
font-size: 0px;
background-size: 145px;
}

#siteTitle:after {
font-size: 16px;
content: "myspace.coveryourselfinkromer.comÂ²";
background-color: rgba(1,1,1,0.5);
text-align:center;
}

/* image banner (stolen from nono, id 50) */

.headerTop {
    -webkit-text-size-adjust: 100%;
    font-size: 14px;
    box-sizing: border-box;
    position: absolute;
    height: 175px;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    background: transparent url("https://images.gr-assets.com/hostedimages/1383550981ra/6593606.gif") no-repeat center top;
    background-repeat: repeat-x;
}
.headerBottom {
    background-color: #000000;
    padding-top: 185px;
}



/* putting red borders around everything (very cool) */

#url {
  border: solid 2px red;
}

#song {
  border: solid 2px red;
}

#group {
  border: solid 2px red;
}

#friends {
  border: solid 2px red;
}

/* end of code */