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

button {
  all: unset;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

input:not([type=radio]):focus{
  outline: 0;
  /* box-shadow: 0 0 0 1px var(--blue-100); */
  border-color: var(--blue-100)
}

body {
  background: var(--gray-100);
  color: var(--gray-300);
  -webkit-font-smoothing: antialiased;
}

body, input, textarea, button {
  font: 400 1rem Roboto, sans-serif;
}
