html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}


html {
  font-size: 62.5%;
  min-height: 100vh;
}

body {
  font-size: 1.8rem;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

* {
  -webkit-font-smoothing: antialiased;
  letter-spacing: 1px;
  color: #5B2525;
  font-weight: 500;
  box-sizing: border-box;
}

h1, h2, h3, h4, p, a {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  line-height: 1.3;
}

a {
  display: inline-block;
}

h2 {
  letter-spacing: .6rem;
  margin-bottom: 4rem;
}

.logo {
  width: 20rem;
  margin-bottom: 5rem;
  margin: 0 auto 5rem;
}

.logo img {
  display: block;
  width: 96%;
  margin-right: 1rem;
}

.logo span {
  position: absolute;
  opacity: 0;
  z-index: -10;
}

.content {
  padding: 10rem 3rem 3rem;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  max-width: 56rem;
  text-align: center;
  z-index: 10;
}

.background {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
}

.background img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 6px;
  text-align: center;
  line-height: 44px;
  text-transform: uppercase;
}

.button {
  border-radius: .6rem;
  padding: 1rem 3rem;
  font-size: 1.4rem;
  text-transform: uppercase;
  background-color: #5B2525;
  font-weight: 800;
  color: #FFF;
  text-decoration: none;
  box-shadow: 0 0 1.5rem rgba(25,25,25,.3);
}

.--smaller {
  font-size: 1.4rem;
  color: #282828;
}

.green {
  margin-top: 4rem;
  margin-bottom: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 3rem;
}

@media (max-width: 570px) {
  .green {
    flex-direction: column;
    margin-right: 0;
  }
  .green img {
    display: block;
    margin: 2rem 0 !important;
  }
}

.green img, .green p {
  display: block;
  margin: 0 1.5rem
}

footer {
  margin-top: 10rem;
}