body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  background: black;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
canvas {
  position: absolute;
  top:0;
  left:0;
  z-index: -1;
}

a:link { 
    text-decoration: none; 
    color: rgb(226, 188, 74);
}


a:visited { 
    text-decoration: none; 
    color: rgb(226, 188, 74);
}


a:hover { 
    text-decoration: none; 
    color: rgb(226, 188, 74);
}


a:active { 
    text-decoration: none; 
    color: rgb(226, 188, 74);
}

.heading {
  font-size: 32px;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 3px;
  word-spacing: 6px;
  text-transform: uppercase;
  color: rgb(226, 188, 74);
}
@media (max-width: 1000px) {
    .heading {
      font-size: 60px;
      letter-spacing: 3px;
      word-spacing: 6px;
    }
}

.text-box {
  font-size: 32px;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 3px;
  word-spacing: 6px;
  text-transform: uppercase;
  color:rgb(226, 188, 74);
}
@media (max-width: 1000px) {
    .text-box {
      font-size: 60px;
      letter-spacing: 3px;
      word-spacing: 6px;
    }
}

.button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  flex-direction: row;
}
.button {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  padding: 15px;
  margin-left:20px;
  margin-right:20px;
  word-spacing: normal;
  letter-spacing: 5px;
  border: 1px solid white;
  background: black;
  cursor: pointer;
}