:root {
  --dark-green: #35495e;
  --green: #3b8070;
  --slate: #526488;

  --action-color: var(--dark-green);
}

*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
}

ul, ol, li {
  padding: 0;
}

ul {
  list-style: none;
}

body {
  font-family: Source Sans Pro,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
  font-size: 16px;
  word-spacing: 1px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em 0;
  line-height: 1.2;
}

h1 {
  font-size: 2em;
}

/* a {
  color: inherit;
} */

code {
  padding: 0.2em 0.4em;
  font-family: menlo, inconsolata, monospace;
  font-size: calc(1em - 2px);
  color: #555;
  border-radius: 2px;
  background-color: #f0f0f0;
}

@media (min-width: 400px) {
  body {
    font-size: 16px;
  }
}

.o-container {
  display: flex;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
  align-items: center;
}

/* Buttons */
.c-button--green {
  display: inline-block;
  padding: 10px 30px;;
  text-decoration: none;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 4px;
}

.c-button--green:hover {
  color: #fff;
  background-color: var(--green);;
}

.c-button--grey {
  display: inline-block;
  margin-left: 15px;
  padding: 10px 30px;
  text-decoration: none;
  color: var(--action-color);
  border: 1px solid var(--action-color);
  border-radius: 4px;
}

.c-button--grey:hover {
  color: #fff;
  background-color: var(--action-color);
}

.c-button--mini {
  margin-left: 5px;
  padding: 5px 15px;
  font-size: 12px;
}

img {
  max-width: 100%;
}

.o-container {
  position: absolute;
  width: 100%;
  overflow: hidden;
}
