:root{
  --container-width: 1720px;
  --color-bg: #F6F6F2;
  --color-text: #111111;
  --color-muted: rgba(17, 17, 17, 0.6);
  --color-line: rgba(17, 17, 17, 0.12);
  --color-white: #ffffff;
}

*,
*::before,
*::after{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  min-width: 320px;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: 'Involve', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img{
  display: block;
  max-width: 100%;
  height: auto;
}

a{
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select{
  font: inherit;
}

button{
  cursor: pointer;
}

.container{
  width: min(100% - 64px, var(--container-width));
  margin: 0 auto;
}

@media (max-width: 767px){
  .container{
    width: min(100% - 32px, var(--container-width));
  }
}

h1, h2, h3, h4, h5, h6,
button,
input,
textarea,
select,
a{
  font-family: 'Involve', Arial, sans-serif;
}