:root {
  --background: #1c1e26;
  --text-primary: rgb(235, 235, 235);
  --text-secondary: rgb(165, 165, 165);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

div,
main {
  display: flex;
  flex-direction: column;
}

.row {
  flex-direction: row;
}

body {
  background: transparent;
  min-height: 100vh;
}
