/*
Theme Name: Dougie Hunt v3
Version: 3
*/

:root {
  --fontfamily: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

html, body {
  background: #fff;
  font-family: var(--fontfamily);
  height: 100%;
  scroll-behaviour: smooth;
}

header {
  background: #fff;
}

.container {
  max-width: 1200px !important;
}

section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.vh-75 {
  min-height: 75vh;
}

.parallax {
  min-height: 500px;
  background-attachment: fixed;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .parallax {
    background-attachment: scroll;
  }
}