@import url('constants.css');

html, .body, .html {
  color: var(--font-color-primary);
  font-family: var(--font-family-1);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
}

@media (min-width: 1200px) {
  html, .body, .html {
    font-size: clamp(0.625rem, 0.294rem + 0.441vw, 1rem)
  }
}

/* The 'cursor' property is ignored for input type="file" elements in
   Chrome/Electron, but it can be set globally with the below selector. */
::-webkit-file-upload-button {
  cursor: pointer;
}
