@use "_settings.colors.scss" as *;
@use "_settings.fonts.scss" as *;
@use "_settings.sizes.scss" as *;

*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  background: $background-color--default;
  color: $text-color--default;
  height: 100%;
}

body {
  background-color: $background-color--default;
  font-family: $font-family;
  font-size: $font-size--small;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: $line-height;
  letter-spacing: normal;
  min-width: $desktop-width__small - 20px;
  height: 100%;
  margin: 0;
}
