/* base.css - reset + typography */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

input, select {
  font: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.only-mobile {
  display: none;
}

@media (max-width: 768px) {
  .only-mobile {
    display: inline-flex;
  }
}
