*,
*::before,
*::after {
  margin: 0;
  padding: 0;

  box-sizing: border-box;

  font-family: inherit;
}

html,
body {
  width: 100%;
  height: 100%;

  overflow: hidden;

  font-family: var(--font-text);
}

h1,
h2,
h3,
h4,
h5,
h6,
.top-title {
  font-family: var(--font-heading);
}

button,
input,
textarea,
select {
  outline: none;
  border: none;
}

textarea {
  resize: none;
}