/**
Глобальные правила для шрифтов, стилей и т.п.
 */
@import 'main';
@import "../reset";
@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');

* {
  @include box-sizing;
  position: relative;
}

body {
  font-family: $default_font_family;
  font-size: $default_font_size;
  line-height: $default_line_height;
  letter-spacing: 0.4px;
  color: $color_default;
}
input, select {
  @include remove_appearance;
  border: none;
  outline: none;
  border-radius: 0;
}

h3, h4, h5, h6 {
  color: $color_dark;
  font-weight: 400;
}

h3 {
  font-size: 42px;
  line-height: 1.14;
  font-weight: bold;
}

h4 {
  font-size: 32px;
  line-height: 1.25;
}

h5 {
  font-size: 24px;
  line-height: 1.33;
}

h6 {
  font-size: 16px;
  line-height: 1.5
}

p {
  font-size: 12px;
  line-height: 1.5;
}

a {
  &, &:link, &:visited {
    color: $color_secondary;
    text-decoration: underline;
  }
}

ul, ol {
  padding-left: 15px;

  li {
    padding-left: 13px;
    margin-top: 15px;
    &:first-child {
      margin-top: 0;
    }
  }
}
