/* Base reset */
*{box-sizing:border-box}
html,body{height:100%}
html{font-size:16px;background:#fff;color:#111}
body{margin:0;display:flex;align-items:flex-start;justify-content:center}

/* Font face */
@font-face{
  font-family:"League Spartan";
  src:url("fonts/LeagueSpartan-VariableFont_wght.ttf") format("truetype");
  font-weight:100 900;
  font-style:normal;
  font-display:swap;
}

.wrap{
  width:100%;
  max-width:1200px;
  padding:72px 24px 64px;
}

.site-title h1{
  font-family:"League Spartan", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:400;
  letter-spacing:0.02em;
  font-size:clamp(18px, 2.6vw, 28px);
  text-align:center;
  margin:0 0 28px 0;
}

.hero{
  margin:0;
}
.hero img{
  width:100%;
  height:auto;
  display:block;
}

.contact{
  margin-top:36px;
  text-align:center;
  font-family:"League Spartan", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:400;
  font-size:clamp(16px, 2vw, 20px);
}
.contact a{color:inherit;text-decoration:none;border-bottom:1px solid #111;padding-bottom:1px}
.contact a:hover{opacity:.7}
