/**
 * @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;
}
html, body {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-display: fallback;
  color: #555555;
}
body {
  overflow-x: hidden;
}
body * {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
p, h1, h2, h3 {
  position: relative;
}
h1, h2, h3 {
  margin:0;
}
::selection {
  background-color: #f48120;
  color: #fff;
}
a:focus, button:focus, div:focus, input:focus{
  outline: none;
}

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

