*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
}

body{
  font-family:var(--font-sans);
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
  padding-top:16px;
}

a{
  color:inherit;
  text-decoration:none;
}

img,svg{
  display:block;
  max-width:100%;
}

h1,h2,h3,h4,p{
  margin:0;
}

button,
input,
select,
textarea{
  font:inherit;
}

@media (max-width:720px){
  body{
    padding-top:10px;
  }
}
