
/// Reset
* {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  font-stretch: normal;
  line-height: normal;
}

html {
  scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  overflow-x: hidden; // Added for .main-wrapper to stay in the viewport
}

em,
strong {
  font-weight: bold;
}

// Box sizing
*,
*::before,
*::after {
  box-sizing: border-box;
}

// Link
a {
  text-decoration: none;
  color: inherit;
}

// Image
img {
  display: none;
  width: 100%;
  height: auto;    
}

blockquote {
  padding: 0 25px 20px;
  color: rgb(91, 86, 86);
  font-style: italic;
  text-align: center;

  p {
    font-size: 22px;
    margin-bottom: 10px;

    @media #{$breakpoint-lg} {
      font-size: 30px;
    }

    &::before {
      content: open-quote;
    }

    &::after {
      content: close-quote;
    }
  }
}

.main {
max-width: 960px;
margin: 0 auto;
padding-right: 20px;
padding-left: 20px;
color: black;
font-family: verdana;

// Use wrapper to get a full-width background (color/gradient/image/video)
.main-wrapper {

    // Hack to fit the width of browser viewport
    position: relative;
    width: 100vw;
    left: 0;
    left: calc(-50vw + 50%);

    }
}


