* {
	cursor: url('https://i.imgur.com/fxN1rR5.png'), auto;
  margin: 0 auto;
}
html {
	height: 100%;
}
body {
	background-color: #222;
	background-image: url(lain.gif);
	cursor: url('https://i.imgur.com/fxN1rR5.png'), auto;
	margin: 0;
	background-repeat: no-repeat;
	background-position: right bottom;
}
h1 {
  -webkit-animation: mymove 5s infinite; /* Chrome, Safari, Opera */
  animation: mymove 5s infinite;
  text-align: center;
	margin: 20px;
	font-family: 'Libre Barcode 128 Text', cursive;
	font-size: 60px;
	font-weight: normal;
}
::selection {
  background-color: #be29ec;
}
h2 {
 color: 	#05ffa1;
 font-family: 'Press Start 2P', cursive;
 font-size: 15px;

}
h2:hover {
	-webkit-animation:shake 5s infinite;
	animation:shake 5s infinite;
}
p {
  color: white;
}
a {
  text-decoration: none;
  color: white;.
}
.container {
  margin: 0 auto;
  max-width: 950px;
	cursor: url('https://i.imgur.com/fxN1rR5.png'), auto;
	margin: 0 auto;

}
.dropButton {
  overflow: hidden;
  display: inline-block;
  background-color: #ff71ce;
  color: #8148b2;
  border: solid 2px #b24f90;
  width: 250px;
  height: 30px;
  padding: 21px;
  margin-top: 14px;
  margin-bottom: 0;
  text-align: center;
  vertical-align: top;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
}
.dropButton:hover {
  background-color: #e565b9;
}
.dropDown {
  position: relative;
  display: inline-block;
}
.dropDownChild {
  display: none;
  background-color: #4c213d;
  width: 250px;
}
.dropDownChild li {
  padding: 20px;
  text-decoration: none;
  display: block;
	font-family: 'Chakra Petch', sans-serif;
}
.dropDownChild a {
	  color: grey;
		text-shadow: 0px -2px 0px #333,
		0px 2px 3px #666;
}
.dropDown:hover .dropDownChild {
    display: block;
}
.hvr-skew-forward {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.hvr-skew-forward:hover, .hvr-skew-forward:focus, .hvr-skew-forward:active {
  -webkit-transform: skew(-10deg);
  transform: skew(-10deg);
}
/* grid background animation
	https://www.color-hex.com/color-palette/10221 */
@-webkit-keyframes mymove {
  0% {color: #ff71ce;}
  25% {color: #01cdfe;}
  50% {color: #05ffa1;}
  75% {color: #fffb96;}
  100% {color: #ff71ce;}
@keyframes mymove {
  0% {color: #ff71ce;}
  25% {color: #01cdfe;}
  50% {color: #05ffa1;}
  75% {color: #fffb96;}
  100% {color: #ff71ce;}
