:root {
  --brand-green: #2f6f5e;
  --brand-green-light: #a9c8c0;
  --off-white: #ffffff;
  --black: #050505;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  background-color: #ffffff;
  overflow-x: hidden;
}

body {
  color: var(--black);
  font-family: "Big Shoulders Text", Arial, sans-serif;
  font-weight: 400;
}

main {
  background-color: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
nav a,
.btn,
.small-btn {
  font-family: "Big Shoulders Display", Arial, sans-serif;
  letter-spacing: 0.5px;
}

h1 {
  font-weight: 900;
}

h2 {
  font-weight: 700;
}

h3 {
  font-weight: 600;
}

p {
  font-family: "Big Shoulders Text", Arial, sans-serif;
  font-weight: 400;
}

.btn,
.small-btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  border-radius: 5px;
  font-weight: 700;
  transition: 0.3s;
}

.btn {
  padding: 14px 28px;
  font-size: 18px;
}

.small-btn {
  padding: 10px 18px;
  font-size: 14px;
}

.btn:hover,
.small-btn:hover {
  background-color: var(--brand-green);
}

@media (max-width: 850px) {

  html,
  body,
  main {
    background-color: #ffffff;
  }

}