/*main*/
 
 /* 248, 68, 113*/
 
body {
  background-image: url("images/backgrounds/rainbowsmile.gif");
  color: black;
  font-family: arial;
  text-align: center;
  padding: 5px;
}

h1 {
  animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-name: rainbowtext;
	animation-timing-function: linear;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  font-size: 100px;
  position: relative;
  top: -80px;
}

h4 {
  letter-spacing: 5px;
  position: relative;
  top: -15px;
  line-height: 15px;
}

h4:hover {
 animation: letterspace 2s ease-out 1;
 animation-fill-mode: forwards;
}

sup {
 font-style: italic;
 position: relative;
 top: -35px;
}

/*containers*/

.box {
  background-color: rgba(140, 255, 26, 0.9);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  margin-top: -15%;
  padding: 10px;
  width: 550px;
  /*height: 645px;*/
  justify-content: center;
}

.box div {
  color: rgb(255, 24, 76);
  height: 150px;
  width: 275px;
  margin: auto;
  margin-top: 5px;
  margin-bottom: 5px;
  text-align: center;
}

.box img.one {
  width: 75px;
  height: 75px;
  padding: 5px 5px 5px 5px;
  display: block;
  margin: auto;
  border: 3px dotted;
  border-radius: 50px;
  animation: rainbowtext 1.5s infinite;
}

.box img.two {
 display: block;
 margin: auto;
 justify-content: center;
 padding: 5px;
 position: relative;
 top: -5px;
}

/*.desc {
  text-align: center;
  margin: auto;
  position: relative;
  top: -40px;
  width: 200px;
  font-size: 10px;
}

.desc img {
  float: left; 
}*/

/*images*/

.rainbowpic {
  vertical-align: middle; 
  width: 15px;
  height: 15px;
}

.snooppic {
  vertical-align: middle; 
  width: 15px;
  height: 15px;
  padding: 3px;
}

/*links*/

a.one:link, a.one:visited, a.one:hover, a.one:active {
  color: rgb(255, 24, 76);
  background-color:transparent;
  text-decoration: none;
}

/**/

a.two:link {
  color: black;
  background-color: transparent;
  text-decoration: underline;
}

a.two:visited {
  color: black;
  background-color: transparent;
  text-decoration: underline;
}

a.two:hover, a.two:active {
  animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-name: rainbowtext;
	animation-timing-function: linear;
}

/*animations*/

@keyframes rainbowtext {
  0%, 100% {color:#ff0000}
  10% {color:#ff8000}
  20% {color:#ffbf00}
  30% {color:#ffff00}
  40% {color:#00ff00}
  50% {color:#00ffff}
  60% {color:#0080ff}
  70% {color:#0000ff}
  80% {color:#8000ff}
  90% {color:#ff00bf}
}

@keyframes letterspace {
  100% {letter-spacing: 10px;}
}

/*fonts*/

.font1 {
  font-family: "Homemade Apple", cursive;
  font-weight: 400;
  font-style: normal;
}

/*never mind the fonts betrayed me*/




















/* peek */