/**
 * @file
 * Global rules
 *
 * Theme global rules.
 */

html {
  height: 100%;
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  overflow-x: hidden;
}
html, body {
  position: relative;
  font-family: 'Mulish', sans-serif;
  color: #774C3F;
}
body * {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
p, h1, h2, h3 {
  position: relative;
}
/* ::selection {
  background-color: #f48120;
  color: #fff;
} */
a:focus, button:focus, div:focus, input:focus{
  outline: none;
}


/**
 * Links
 */
a {
  color: blue;
  text-decoration: none;
}

/**
 * Variable
 */
.background-color-primary {
  background: #FFF4EA;
}

