* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}

/* input {
  outline: none;
} */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

.container {
  width: 1200px;
  margin: 0 auto; /* ЦЕНТРИРУЕТ */
}

@media screen and (max-width: 480px) {
  .container {
    width: 90%;
  }
  section {
    margin-bottom: 60px;
  }
}

:root {
  --main-color: #2196f3;
  --text-color: #757575;
  --title-color: #212121;
}

section {
  margin-bottom: 94px;
}

html {
  scroll-behavior: smooth;
}
