@font-face {
  font-family: 'satoshi';
  src: local('satoshi'), local('satoshi'), url(/static/img/Satoshi-Variable.ttf) format('truetype');
}
* {
  font-family: "satoshi", sans-serif;
}

#login {
  background-image: url("/static/img/login.png");
  background-repeat: no-repeat;
  background-position: right 24px bottom 24px;
  background-size: 160px;
}

h1, h2, h3, p.name {
  font-weight: normal !important;
}

body {
  position: relative;
  margin: 0;
  height: 100vh;
  background-image: url("/static/img/background.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 512px;
  background-attachment: fixed;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0); 
  z-index: -1;
}

body.dark::before,
html.dark body::before {
  background: rgba(20, 29, 36, 0.55);
}