/* components/seppy/assets/css/500-style.css */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/assets/fonts/Montserrat-VariableFont_wght.ttf) format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  height: 100%;
  font-size: 10px;
}
body {
  height: 100%;
  font-size: 1.6rem;
  font-family: Montserrat, sans-serif;
  color: rgb(199, 199, 199);
  background: rgb(29, 30, 31);
}
a {
  text-decoration: none;
  color: #569bd4;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
}
app-container {
  display: flex;
  height: 100%;
}
drawer-left {
  background: #000;
  width: 28rem;
  display: flex;
  flex-direction: column;
}
nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}
nav a {
}


