* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #4571e5;
  --gray-scale: #737373;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Wanted Sans", sans-serif;
  color: #0d0d0d;
  line-height: 1.2;
  height: 100%;
}

section {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
input,
textarea,
button {
  outline: none;
  border: none;
  font-family: inherit;
}
button {
  background: none;
  cursor: pointer;
}
address {
  font-style: normal;
}
dialog {
  border: none;
  padding: 0;
  margin: 0;
  background: none;
}

.wrapper {
  max-width: 1580px;
  margin: 0 auto;
}
