/**
 * @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: Arial, sans-serif;
  font-display: fallback;
  color: #000000;
}
body {
  overflow-x: hidden;
}
body * {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
p, h1, h2, h3 {
  position: relative;
}
::selection {
  background-color: #7B1E30;
  color: #fff;
}
a:focus, button:focus, div:focus, input:focus{
  outline: none;
}

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

h1 {
  font-family: 'Hammersmith One', sans-serif;
  font-display: fallback;
  font-weight: 300;
  color: #7B1E30;
}
h2 {
  font-family: 'Fira Sans', sans-serif;
  font-display: fallback;
  font-weight: 700;
  font-size: 1.563rem;
}
p {
  font-family: 'Fira Sans', sans-serif;
  font-display: fallback;
}
.color-primary {
  color: #7B1E30;
}
.background-color-primary {
  background: #7B1E30;
}
.color-secondary {
  color: #333333;
}
.background-color-secondary {
  background: #F1F1F1;
}
.text-grey,
.color-tertiary {
  color: #707070;
}
.color-quaternary {
  color: white;
}
.large-text {
  color: #7B1E30;
  font-size: 2rem;
  font-family: 'Fira Sans', sans-serif;
  font-display: fallback;
}
.large-text-white {
  font-size: 2rem;
  font-family: 'Fira Sans', sans-serif;
  font-display: fallback;
  margin: 20px 0;
}
.underline {
  color: #333333;
  border-bottom: solid 2px #7B1E30;;
  padding: 5px;
  width: max-content;
}
@media screen and (min-width: 1000px){
  h1 {
    font-size: 3.5rem;
    line-height: 70px
  }
  h2 {
    font-size: 2.5rem;
  }
  .large-text-white {
    font-size: 3rem;
  }
}