/* 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; /* now with parallax! */
  font-family: Verdana; /* much better than arial */
}

/* notice (modified from neilcicirega id 23) */
#bio img {
  width: 100px;
  position: fixed;
  left: -10px;
  bottom: 0;
}
/* color stuff white */

h1 {
  color: white;
}

div {
  color: white;
}

a {
  color: white;
}

/* only get the small element in #submitform */
#submitform > small{ 
    visibility: hidden;
    position: relative;
}

/* change the text to clarify the secret meb sex hack is enabled */
#submitform > small:after { 
    visibility: visible;
    position: absolute;
    top: 0;
    left: 0;
    content: "max limit: 500 characters | markdown supported | secret meb sex hack enabled";
}

/* info styling */

.commentslist {
  color: red;
  background-color: rgba(1,1,1,0.5);
  border: solid 2px red;
}

#aboutme {
  color: red;
  background-color: rgba(1,1,1,0.5);
  border: solid 2px red;
  text-align: center
}

#wish {
  color: red;
  background-color: rgba(1,1,1,0.5);
  border: solid 2px red;
  text-align: center
}

#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;
}

/* hiding/re-arranging things */

.info {
  display: none
}

#url {
 display: none 
}

/* changing the site title ever so slightly (stolen from hanabi) */

#siteTitle {
font-size: 0px;
background-size: 145px;
}

#siteTitle:after {
font-size: 16px;
content: "givemyaccountback.trolled.lol";
background-color: rgba(1,1,1,0.5);
text-align:center;
}

#formerly {
font-size: 0px;
background-size: 145px;
}

#formerly {
font-size: 16px;
content: "givemyaccountback.coveryourselfinoil.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 */