canvas {
    padding:0;
    margin:0;
}
body, html {
    height: 100%;
    width: 100%;
    padding: 0;
    margin:0;
    overflow: hidden;  
    cursor: wait;  
}
.bg-image {
	height: 100%;
    background-image: url("newbg.jpg");
    filter: blur(3px);
    -webkit-filter: blur(3px);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
}
.moving-bg {
  width: 70%;
  height: 80%;
  position: absolute;
  top: 10%;
  left: 15%;
  z-index: 1;
  background: url("newbg.jpg") no-repeat center center;
  opacity: 0.9;
  background-size: cover;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  overflow: hidden;
  box-shadow: 0px 0px 50px 5px rgba(0,0,0,0.5);
}
h1{
  z-index: 2;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 45%;
  left: 45%;
  color: black;
  font-family: 'Monoton';
  font-weight: bold;
}
.hide{
  display: none;
}
h1:hover .hide{
  display: block;
  cursor: none;
}
h1:hover .show{
  display: none;
}
.moving-bg:hover{
  cursor: url('lovecur.png'), default;
}
.icons{  
  z-index: 3;
  position: absolute;
  bottom: 10px;
  left: 10px;
  cursor: default;
  font-family: 'Monoton';
}
.icons a{
  color: #8B816B;
 	text-decoration: none;
  font-size: 25px;
  margin: 0px 5px;
}
.icons a:hover{
  color: white;
	text-decoration: none;
}
.about-me img{
	width: 30px;
	height: 30px;
	border-radius: 50%;
  margin-right: 10px;
}