/*
Theme Name: Lucid Ruin
Version: 1.0
*/

:root{
  --bg:#07070a;
  --text:#eaeaf0;
  --muted:rgba(234,234,240,.7);
  --line:rgba(255,255,255,.12);
}

*{ box-sizing:border-box; }

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  line-height:1.6;
  text-align:center; /* center everything */
}

a{ color:#bfbaff; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  max-width:1100px;
  margin:0 auto;
  padding:40px 20px;
}

header, footer{
 header, footer{
  border: none !important;
}


footer{
  border-top:1px solid var(--line);
  border-bottom:none;
}

img{
  display:block;
  margin:0 auto;
  max-width:100%;
  height:auto;
}

h1,h2,h3{
  margin:0 0 14px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

p{ color:var(--muted); margin:0 0 18px; }
