@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
.inter-font {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Gill Sans Extra Condensed Bold";
  font-weight: bold;
  src: url("../assets/fonts/GillSansExtraCondensedBold.otf") format("opentype");
}
* {
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
  color: inherit;
  text-decoration: inherit;
  font-family: inherit;
  font-size: 16px;
}

html, body {
  height: 100%;
}

body {
  background-color: #000;
  color: #FFF;
  font-family: "Inter", sans-serif;
  /*font-weight: 900;*/
  font-weight: normal;
  font-style: normal;
}

#landing {
  border: 1px solid #FFF;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#landing #landing-content {
  display: flex;
  flex-direction: column;
  place-self: center;
  place-items: center;
}
#landing #landing-content #canvas-container {
  width: 200px;
  height: 290px;
  border: 1px solid #e43797;
  border-radius: 3px;
  margin-bottom: 40px;
  overflow: hidden;
}
#landing #landing-content #canvas-container canvas {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}
#landing #landing-content #landing-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scaleY(0.8);
}
#landing #landing-content #landing-text h1 {
  font-family: "Gill Sans Extra Condensed Bold", monospacea;
  font-size: 4.5rem;
  letter-spacing: 0.3ch;
  text-transform: uppercase;
}
#landing #buttons {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  column-gap: 12px;
  margin-top: 50px;
}
#landing #buttons button {
  flex: 1;
  background-color: transparent;
  color: #e43797;
  border: 1px solid #e43797;
  border-radius: 2px;
  padding: 10px;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-family: inherit;
  letter-spacing: 1px;
  font-weight: 0;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.1s ease-out, color 0.1s ease-out;
}
#landing #buttons button:hover {
  color: #000;
  background-color: #e43797;
}

/*# sourceMappingURL=main.css.map */
