/* style.css — enkel grundstil för RelayWorks */
html,body{height:100%}
*{box-sizing:border-box}
body{
  margin:0;
  background:#ffffff;   /* vit bakgrund */
  color:#000000;        /* svart text */
  font:16px/1.6 Consolas, monospace; /* grundfont = Consolas */
  display:flex;
  flex-direction:column;
  min-height:100vh;
}

/* Header: logga i topp, centrerad */
.site-header{ 
  padding:24px 16px 0; 
  text-align:center;
}
.logo{ 
  display:inline-block; 
  max-width:420px; 
  width:60vw; 
  height:auto; 
}

/* Footer: fast längst ner via flex */
.site-footer{ 
  margin-top:auto;
  padding:16px;
  text-align:center;
}
