body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #f7f1e3;

  background: #181923;
  position: relative;
}

body::before{
  content: "";
  position: fixed;
  inset: 0;

  background:
    radial-gradient(circle at top left, rgba(255, 214, 102, 0.22), transparent 32%),
    radial-gradient(circle at bottom right, rgba(90, 180, 255, 0.24), transparent 34%),
    linear-gradient(135deg, #181923, #25202f 48%, #141820);

  z-index: -1;
}

/* ------------------------ HEADER ------------------------ */
header{
  flex: 0 0 auto;
  padding: 24px 16px 8px;
}

h1.title{
  text-align: center;
  font-family: oleo;
  font-weight: 100;
  font-size: clamp(2rem, 8vw, 4rem);
  letter-spacing: 1px;
  color: #fff3c4;
  text-shadow: 0 4px 0 rgba(0,0,0,0.45);
}

img.diecon{
  display: inline-block;
  vertical-align: middle;
  height: 30px;
  margin: 0 8px;
  filter: drop-shadow(0 4px 4px rgba(0,0,0,0.5));
}

/* ------------------------ CONTENT ------------------------ */
#content{
  flex: 1 0 auto;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;

  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;

  padding: 0 16px 32px;
  box-sizing: border-box;
}

/* ------------------------ FOOTER ------------------------ */
footer{
  flex-shrink: 0;
  flex-basis: auto;
  padding: 18px;
  box-sizing: border-box;
  text-align: center;
  color: rgba(247, 241, 227, 0.7);
  font-size: 0.85rem;
}