/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

:root {
  --main: #126D49;
  --main-lighten-20: #68a1e2;
  --bg: #FFFFFF;
}

html.wf-loading * {
  opacity: 0;
}

body {
  font-family: sans-serif;
  background-color: var(--bg);
}

h1 {
  font-size: 72px;
  font-weight: semi-bold;
  margin: 0;
  background: -webkit-linear-gradient(135deg, var(--main), var(--main-lighten-20));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 45px;
  font-weight: semi-bold;
  margin: 0;
  background: -webkit-linear-gradient(135deg, var(--main), var(--main-lighten-20));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h6 {
  font-weight: normal;
  font-size: 20px;
  line-height: 30px;
}

p {
  font-size: 16px;
  line-height: 21px;
  padding: 10px 20px;
}

a {
  color: var(--main);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

a:hover {
  color: var(--main-lighten-20);
}

header {
  background-color: white;
  display: flex;
  justify-content: center;
  height: 92px;
}

.header-link {
  display: inline-flex;
}

.root {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
}
.button {
  padding: 14px 28px;
  margin: auto;
  border-radius: 8px;
  cursor: pointer;
  color: #fff;
  background-color: #000;
  border-style: none;
}
.button:active, .button:hover {
  color: #fff;
  background-color: #303030;
  outline:none;
}
.container {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  padding-top: 10vh;
  text-align: center;
  flex: 1;
  padding: 8rem 2rem;
}

.left {
  flex: 0 0 50%;
}

.right {
  flex: 0;
}

.ohsnap {
  font-weight: bold;
  font-size: 200px;
  line-height: 200px;
  color: transparent;
  -webkit-text-stroke: 1px var(--main);
  text-shadow: 5px 5px #E7F0ED;
}

@media (min-width:0px) and (max-width:599.95px) {
  .container {
    padding: 4rem 1rem;
  }

  .ohsnap {
    font-size: 150px;
    line-height: 150px;
  }
}
