/*
  LastPick - Reset & Base Styles
  This file contains global resets and base element styling.
*/

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Prevents fixed header from overlapping content on anchor links */
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: #013E37;
  color: var(--text);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-height); /* FIX: Add padding to body to offset for the fixed header. */
  padding-bottom: 80px; /* FIX: Add safe area padding for bottom navigation. */
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}