/* ADD RESETS */

* {
  margin: 0;
  font-family: "Avenir", sans-serif;
}

html,
body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}
main {
  flex: 1 0 auto;
}
footer {
  flex-shrink: 0;
}

h1 {
  font-size: 40px;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: .08em;
}

h1 > span {
  t
}

h2 {
  font-size: 24px;
}

p {
  font-size: 16px;
}

section.goodwill {
  margin-bottom: 4em;
}

p.goodwill-explanation {
  text-align: center;
}

/* Decorated headline */
.decorated {
  overflow: hidden;
  text-align: center;
  margin-top: 15vh;
  margin-bottom: 10vh;
}
.decorated > span {
  position: relative;
  display: inline-block;
}
.decorated > span:before,
.decorated > span:after {
  content: "";
  position: absolute;
  top: 50%;
  border-bottom: 2px solid;
  width: 591px; /* half of limiter*/
  margin: 0 20px;
}
.decorated > span:before {
  right: 100%;
}
.decorated > span:after {
  left: 100%;
}

section.columns {
  display: flex;
  flex-direction: row;
  text-align: center;
}

article {
  background-color: #f1f1f1;
  padding: 10px;
  flex: 33.33%;
}

figure.logo {
  margin: 1em auto;
}

img.logo {
  max-height: 50px;
  margin-bottom: 1vh;
}

img.twyst-logo {
  max-height: 40px;
}

img.social-logo {
  display: inline-block;
  max-height: 30px;
  margin: 2em .8em 0 .8em;
}

img.social-logo:hover {
  opacity: 0.8;
}

p.info {
  display: inline-block;
  max-width: 80%;
  text-align: center;
  /* min-height: 220px; */
}

p.links {
  margin: 1.5rem auto;
}

a.link {
  color: inherit;
  text-decoration: none;
  padding: 0.2rem 1rem;
  background-color: none;
  border: 1px black solid;
  border-radius: 5px;
  position: relative;
  text-align: center;
}

a.link:hover {
  background-color: black;
  color: white;
  border: none;
}

footer {
  margin: 1rem 0;
  text-align: center;
  margin-top: auto;
}

footer>p,
address {
  font-size: 12px;
}

address {
  margin: .5em auto;
}

@media (min-width: 1000px) {
  .mobile-break {
    display: none;
  }
}

@media (max-width: 1000px) {
  section.columns {
    flex-direction: column;
  }

  article {
    margin-bottom: 5vh;
  }
}
