/* BACKGROUND */
body {
  background-color: #212121;
}

/* BOX */
.box {
  background-color: #31c9cc;
  height: 80%;
	width: 80vh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* LINK */
.link:link {
  color: #FF9999;
}

.link:visited {
  color: #AABBFF;
}

.link:hover {
  color: #FFFFFF;
}

.link:active {
  color: #FFFF00;
}

/* DOGE */
.doge {
  display: inline-block;
  width: 180px;
  height: 130px;
  background-size: 180px;
  background-image:url( 'https://static.wikia.nocookie.net/meme/images/c/c5/PlainDoge.jpg/revision/latest/scale-to-width-down/310?cb=20140417031448' );
  margin: 3px;
  border-radius: 10%
}

.doge:hover {
  cursor: pointer;
}

.doge:active {
  background-image:url('https://img.17qq.com/images/gmmmdpmomlv.jpeg');
}