body {
	background: black;
}

#canvas1 {
	position: absolute;
	background: blcak;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
#slider {
	width: 100%;
}
p {
	color: white;
}
#msg {
	 position: absolute;
  top : calc(50%  - 50px);
  left: calc(50% - 100px);
  width:200px;
  text-align: center;
  font-size: 60px;
  background-color: #F0F000;
  color: black;
  opacity: 1;
}
.fadeout {
  animation: animate 5s linear;
}
@keyframes animate {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}