@font-face {
  font-family: "SPYDERSILK";
  src: url("./FONT.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  background: rgb(0, 0, 0);
}

#bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;

  height: 100vh;
  width: 100%;

  display: flex;
  flex-direction: column;

  justify-content: center;  /* vertical center */
  align-items: center;      /* horizontal center */

  text-align: center;

  color: white;
  font-family: "SPYDERSILK";
}

h1 {
  color: #011729;
  font-size: 65px;
  font-weight: 500;
  letter-spacing: -5px;
  margin-bottom: -10px;
  opacity: 0.8;
}

h5 {
  color: #000000;
  font-size: 13px;
  font-weight: 100;
  letter-spacing: 1.5px;
  opacity: 0.7;
  margin-top: 6px;
}