#hero {
  position: relative;
  width: 100vw;
  height: 53vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #212529;
}

#canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

p {
  font-size: 1.5em;
}

