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

body {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Color Emoji", sans-serif;
  line-height: 1.6;
  padding: 20px;
  transition: all 0.3s;
}

*,
*::before,
*::after {
  font-family: inherit;
}

.emoji-text {
  font-family: "Noto Color Emoji", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

h1,
h3 {
  margin: 24px 0 12px;
}

hr {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

a {
  color: var(--main);
  margin-right: 14px;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
