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

html {
  font-size: 62.5%;
}

html,
body {
  height: 100%;
  width: 100%;
  height: 100vh;
  width: 100vw;
  padding: 0;
  margin: 0;
  position: relative;
  background-color: #518538;
  font-family: 'Open Sans', sans-serif;
}

h1,
h2,
h3 {
  font-family: 'Bree Serif', serif;
}

.card {
  position: relative;
  height: 100%;
  width: 100%;
}

.card__inner {
  height: 200px;
  padding-top: 40%;
  max-height: 450px;
  min-height: 200px;
  padding-left: 25px;
  padding-right: 25px;
  position: relative;
  text-align: center;
}

  .card__inner h1 {
    text-indent: -9999px;
    visibility: hidden;
    display: none;
  }

  .card__inner__logo {
    background: #F5F1E8;
    padding: 0 20px;
    position: absolute;
    max-height: 400px;
    min-height: 200px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .card__inner img {
    margin: 0 auto;
    display: block;
    width: 100%;
    height: 200%;
    max-width: 800px;
    position: relative;
    bottom: 0;
  }

.card__content {
  color: #F5F1E8;
  padding: 0 20px 20px 20px;
  max-width: 400px;
  text-align: center;
  margin: 0 auto;
  font-size: 1.6rem;
}

  .card__content h2 {
    color: #F5F1E8;
    font-size: 4.2rem;
    font-weight: regular;
  }

  .card__content p {
    color: rgba(245, 241, 232, 0.5);
  }

  .card__content a {
    color: #F5F1E8;
    text-decoration: none;
    border-bottom: 0.2rem solid rgba(245, 241, 232, 0.25);
    padding: 0 0.25rem;
    display: inline-block;
    margin-bottom: 1rem;
  }

  .card__content a:hover {
    border-bottom-color: rgba(245, 241, 232, 0.75)
  }
