<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.wrap {
  height: 100%;
}

.card {
  display: flex;
  flex: 0 0 auto;
  background: #fff;
  max-width: 700px;
  margin: 80px 0;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  opacity: 0;
  -webkit-animation: fadein 1.5s forwards 1s;
          animation: fadein 1.5s forwards 1s;
}

.card-pic-wrap {
  border-radius: 5px 0 0 5px;
  width: 300px;
  flex: 0 0 auto;
  position: relative;
  background: linear-gradient(to bottom, #9fd483, #8dc26f);
}
.card-pic-wrap img {
  position: absolute;
  bottom: 3em;
  left: 50%;
  margin-left: -175px;
  width: 350px;
  -webkit-box-reflect: below -1px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, transparent), to(rgba(250, 250, 250, 0.15)));
}

.card-content {
  padding: 3em 4em 2em;
}

h3 {
  font-family: "PT Serif", serif;
  font-weight: bold;
  font-size: 2.5em;
  margin: 0 0 1em;
}

a {
  background: #8dc26f;
  color: #fff;
  padding: 0 25px;
  height: 50px;
  font-size: 0.8em;
  letter-spacing: 1px;
  line-height: 50px;
  display: inline-block;
  border-radius: 25px;
  text-decoration: none;
  margin-top: 1.5em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
a:hover {
  background: #70a751;
}

@media (max-width: 790px) {
  body {
    overflow-x: hidden;
  }

  .wrap {
    margin-left: 20px;
    margin-right: 20px;
  }

  .card {
    flex-direction: column;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .card-pic-wrap {
    width: 100%;
    border-radius: 5px 5px 0 0;
  }
  .card-pic-wrap img {
    bottom: 20px;
    position: relative;
  }

  .card-content {
    padding: 2em 2em 1em;
  }
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}</pre></body></html>