body{
  width:100%;
  height:100%;
  position:absolute;
  top:0;
  margin:0;
  cursor:none;
  font-family: Arial, Helvetica, sans-serif;
}

.logo{
	
	background-position: center;
  background-image:url('logo.png');
  width: 200px;
  height:82px;
  margin:auto;
}

canvas {
  display: block;
  width: 100vw;
  height: 100vh;
}

.hero-text {
  text-align: center;
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index:1000;
}

.hero-text button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 10px 25px;
  color: black;
  background-color: #ddd;
  text-align: center;
  cursor: pointer;
}

.hero-text button:hover {
  background-color: #555;
  color: white;
}

a{
	color:#ED1846;
	text-decoration: none;
}

.underline {
  border: 2px solid transparent;
}
.underline::after {
width: 0%;
height: 2px;
display: block;
background-color: #fff;
content: " ";
position: relative;
top: 4px;
left: 50%;
transition: left 0.2s cubic-bezier(0.215, 0.61, 0.355, 1), width 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.underline:hover::after 
{
  width: 100%;
  height: 2px;
  display: block;
  background-color: #fff;
  content: " ";
  position: relative;
  top: 4px;
  left: 0;
}

.parent{
    display: inline-block;
}