@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/OpenSans-Regular.woff2') format('woff2');
  unicode-range: U+000-5FF; /* Latin */
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/OpenSans-Bold.woff2') format('woff2');
  unicode-range: U+000-5FF;
}

:root {
  --primary-blue: #166998;
  --background: #f7f3e3;
}
html {
  line-height: 1.4;
	height: 100%;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: var(--background);
	display: flex;
  flex-direction: column;
  height: 100%;
}
main {
  flex: 1 0 auto;
}
.hero-img {
  max-width: 500px;
  height: auto;
  width: 100%;
}
.btn-primary {
  width: 152px;
  height: 52px;
  font-size: 16px;
  border-radius: 6px;
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #50a4c9;
  border-color: #50a4c9;
}
h1 {
	margin-top: 0;
	margin-bottom: .5rem;
	font-weight: 600;
	line-height: 1.2;
	color: inherit;
}
