@font-face {
  font-family: "Open Sans";
  src: url("OpenSans.ttf") format("truetype");
}

:root {
  --primary-color: #9b4dca;
}

*,
*:after,
*:before {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  background-color: #f5f5f5;
  color: #434b52;
  font-family: "Open Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 1.6em;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

b,
strong {
  font-weight: 600;
}

hr {
  border: 0;
  border-top: 0.1rem solid #c5c6c6;
  margin: 3rem 0;
}

p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  letter-spacing: -0.1rem;
  margin-bottom: 2rem;
  margin-top: 0;
}

h1 {
  font-size: 4.6rem;
  line-height: 1.2;
}

h2 {
  font-size: 3.6rem;
  line-height: 1.25;
}

h3 {
  font-size: 2.8rem;
  line-height: 1.3;
}

h4 {
  font-size: 2.2rem;
  letter-spacing: -0.08rem;
  line-height: 1.35;
}

h5 {
  font-size: 1.8rem;
  letter-spacing: -0.05rem;
  line-height: 1.5;
}

h6 {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.4;
}

img {
  max-width: 100%;
}

.dash-dropdown {
  min-width: 250px;
}

#_dash-app-content {
  padding: 40px;
  background-color: #f5f5f5;
}

.main {
  max-width: 1100px;
  min-height: 90vh;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  background-color: #fff;
}

.row-stack {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 2rem;
}

nav {
  margin-bottom: 25px;
}

nav > a {
  color: var(--primary-color);
  text-decoration: none;
}
nav > a:hover {
  text-decoration: underline;
}
