:root {
  --body-color: #000;
  --border-radius: 10px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lato", "Open Sans", -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--body-color);
  background: #fff;
  line-height: 1.6;
}

#root {
  min-height: 100vh;
}

a { 
  text-decoration: none; 
  color: var(--body-color);
}

figure {
  all: unset;
}

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  font-size: 16px;
  opacity: 0.6;
}
