/**
 * @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;
  scroll-behavior: smooth;
}
html, body {
  position: relative;
  font-family: "Open Sans", sans-serif;
  color: #000000;
}
body {
  overflow-x: hidden;
}
body * {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
p, h1, h2, h3 {
  position: relative;
}
h1 {
  font-size: 2rem;
}
@media screen and (min-width:800px) {
  h1 {
    font-size: 2.5rem;
  }
}
::selection {
  background-color: #ffc000;
  color: black;
}
a:focus, button:focus, div:focus, input:focus{
  outline: none;
}

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

