@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;800&display=swap");

:root {
  --brand-yellow: #ffc600;
  --brand-gray: #53565a;
  --brand-gray-dark: #45484b;
  --brand-gray-80: #76787c;
  --brand-gray-50: #aaabae;
  --brand-gray-15: #eeeeef;
  --brand-white: #ffffff;
  --danger: #b42318;
  --danger-soft: #fff1f0;
  --success: #16794c;
  --success-soft: #e9f8ef;
  --text: #3f444a;
  --muted: #6f7378;
  --line: #d7d8da;
  --shadow: 0 20px 50px rgba(34, 36, 38, 0.16);
  --radius: 10px;
  --font-brand: "Roboto", "Lucida Grande", "Lucida Sans Unicode", Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--brand-gray);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: var(--font-brand) !important;
  color: var(--text);
  background: var(--brand-gray);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.sr-only {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
