@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Mono&display=swap");
* {
  font-family: Inter, sans-serif;
}

*::-moz-selection {
  background-color: #832bff;
}

*::selection {
  background-color: #832bff;
}

html, body {
  padding: 0;
  margin: 0;
}

body {
  background-color: black;
  background-image: url(/Images/mtrx-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

nav {
  position: relative;
}
nav .left {
  filter: brightness(50%);
  height: clamp(2rem, 2.5vw, 3rem);
}
nav .left:hover {
  filter: brightness(100%);
}

main {
  color: #fff;
  margin-left: 12.5%;
}
main h1 {
  font-family: "Space Mono";
  font-weight: 300;
  font-size: clamp(2rem, 2.5vw, 4rem);
}
main p {
  color: #ccc;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.2vw, 2rem);
}
main img {
  position: absolute;
  bottom: 12.5%;
  filter: grayscale(100%) brightness(5%);
  translate: -1em;
  height: clamp(2.5rem, 3vw, 3.75rem);
}

@media (max-width: 360px) {
  main img {
    translate: 0;
    width: 75%;
    height: unset;
  }
}
@media (max-height: 400px) {
  main img {
    display: none;
  }
}/*# sourceMappingURL=Mtrx.css.map */