body {
  background-color: orange;
  color: black;
  font-family: Courier;
  /*except this, I added this, it puts everything in the middle of the screen*/
  margin: 100px;
}

#header {
  padding: 5px;
  color: blue;
  border: black 4px solid;
  border-radius: 15px;
}
  
.subheader {
  margin-right: 100px;
  margin-left: 100px;
}

p {
  font-size: +150%;
  background-color: black;
  color: white;
}

/*my silly image and comment*/
img {
  transform: scale(1.5) rotate(5deg);

}

h6 {
  display: inline;
}

/*homepage link*/
.special {
  background-color: black;
  margin: 0 auto;
  text-align: center;
  a:link {
    color: green;
  }
  a:visited {
    color: red;
  }
  a:hover {
    color: blue;
  }
}

/*border around my list of awesome things*/
  ul {
    text-align: center;
    border: 15px ridge red;
    list-style-type: none;
    width: 300px;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

li {
color: blue;
}

/*doing funny things to my links*/
a:link {
  color: blue;
  }
a:visited {
  color: red;
  }
a:hover {
  text-decoration: none;
}


/*my blow up meter*/
.outer {
  border: 10px solid black;
  background-color: white;
}


.box {
  padding: 10px;
  width: calc(30%);
  background-color: green;
  color: white;
}


/*my floating square*/
.square {
  margin: 100px;
  width: 100px;
  height: 100px;
  background-color: white;
  transform: rotate(0.08turn);
  display: block;
}

/*tattoo on screen*/
.tattoo-tribute{
  position: fixed;
  bottom: -25px;
  left: 20px;
}

.circle {
  margin: 45px;
  width: 115px;
  height: 115px;
  border: green 5px solid;
  border-radius: 100px;
}

.square2 {
  width: 100px;
  height: 100px;
  border: 5px solid red;
  margin-top: -60px;
  margin-right: 40px;
  margin-bottom: 10px;
  margin-left: -60px;
  
}
  
  
/*following a tutorial*/

  
  


