@font-face {
  font-family: 'GilmerHeavy';
  src: url('fonts/High\ Speed.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html, body {
  margin: 0;
  height: 100%;
  background-color: #000000;
  color: white;
  font-family: 'GilmerHeavy', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  text-align: center;
  overflow: hidden;
}

canvas#c {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  z-index: 0;
  pointer-events: none;
  background: transparent;
}

.content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.discord-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: transparent;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.discord-btn:hover,
.discord-btn:focus {
  background-color: white;
  color: black;
  outline: none;
  cursor: pointer;
}
