@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Playfair+Display:wght@600;700&display=swap');

:root{
  --bg:#0f1012;
  --panel:#141414;
  --gold:#d6b15a;
  --gold-soft:rgba(214,177,90,.22);
  --text:#e6e6e6;
  --muted:#b8b8b8;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:var(--bg);
  color:var(--text);
  font-family:'Playfair Display', serif;
}

a{
  text-decoration:none;
  color:inherit;
}

h1,h2,h3,h4,h5,h6{
  margin-bottom:14px;
  color:#f2f2f2;
}

p{
  font-family:'Inter',sans-serif;
  font-size:1rem;
  line-height:1.5;
  color:var(--muted);
}

p + p{
  margin-top:8px;
}



html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden; /* KILLS RIGHT SIDE INFINITE SPACE */
}
