/* Reset  */

html {
  box-sizing: border-box;
  font-size: 16px;
}

* {
  font-family: sans-serif;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

img {
  max-width: 100%;
  height: auto;
}

/* Layout */

main {
  max-width: 1000px;
  margin: 0 auto;
}

section.padded {
  padding: 40px 10px;
}

header {
   text-align: center;
   padding: 90px 10px;
}

footer {
   text-align: center;
  padding: 40px 10px;
}

/* Text */

p, h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
  color: #333;
}

p {
  margin-bottom: 1em;
}

h1 { font-size: 2.25em; font-weight: bold }
h2 { font-size: 1.75em; }
h3 { font-size: 1.5em; }
h4 { font-size: 1.25em; }

/* Button */

a.button {
  display: inline-block;
  padding: 10px 30px;
  background-color: #289964;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}

a.button:hover {
  background-color: #1c6c48;
}

/* Utilities */

.center {
  text-align: center;
}

.small {
  font-size: 0.75em;
}

.large {
  font-size: 1.25em;
}

.larger {
  font-size: 1.5em;
}

/* Media */

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.embed-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
