:root {
  /* Cores */
  --color: white;
  --bg: black;
  --menu: #4e3a1f;
  --menucolor: #f8f3eb;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  user-select: none;
  pointer-events: none;
}

body {
  color: var(--color);
  background: var(--bg);
  scroll-behavior: smooth;
}

a {
  color: var(--color);
  text-decoration: none;
  cursor: pointer;
  pointer-events: all;
}
iframe, iframe *{
  pointer-events: all;
}