html, body {
	margin:0;
  overflow:hidden;
  background:#000;
  color:white;
  font-family:Arial;
}

.message{
  padding:0px;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%); 
  cursor:pointer;
  font-size:14px;
  
}

div.bloom{
    position: fixed;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
    width: 0px;
    height: 0px;
    border-radius: 70%;
    background-color: rgb(255, 255, 255);
    box-shadow:
      0 0 60px 30px rgba(36, 218, 178, 0.945),
      0 0 100px 60px rgba(131, 32, 224, 0.795),
      0 0 140px 90px rgba(17, 118, 177, 0.884);
      filter:blur(1px)
  }

  .button {
    cursor: pointer;
    font-size: 14px;
    position:absolute;
    bottom:10px;
    left:10px;
 }
  .button:after {
    content: "";
    display: block;
    height: 1px;
    width: 0;
    background-color: rgba(17, 118, 177, 0.884);
    position: absolute;
    transition: 0.2s;
 }
  .button:hover:after {
    width: 100%;
 }
  