* {
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
header {
  flex: 1 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .logo > img {
  box-sizing: border-box;
  max-width: 100%;
  display: block;
  padding: 50px;
}
@media (max-width: 600px) {
  header .logo > img {
    width: 100%;
  }
}
footer {
  padding: 50px;
  flex: 0 0 auto;
  background: rgb(42,154,66);
  background: linear-gradient(135deg, rgba(42,154,66,1) 0%, rgba(134,200,70,1) 100%);   
  color: white;
  font-size: 14px;
}
footer p:first-child {
  font-weight: bold;
}
footer p a {
  text-decoration: none;
  color: white;
}
footer p {
  margin-bottom: 5px;
}
footer p.bottom-margin {
  margin-bottom: 15px;
}
footer .footer-wrapper {
  margin: 0 auto;
  overflow: hidden;
}
footer .footer-wrapper .left {
  width: 50%;
  float: left;
  text-align: right;
  padding-right: 15px;
  box-sizing: border-box;
}
@media (max-width: 555px) {
  footer .footer-wrapper .left {
    float: none;
    text-align: center;
    padding: 0;
    margin: 0 auto 15px auto;
    width: 100%;
  }
}
footer .footer-wrapper .right {
  padding-left: 15px;
  width: 50%;
  text-align: left;
  float: right;
  box-sizing: border-box;
}
@media (max-width: 555px) {
  footer .footer-wrapper .right {
    float: none;
    text-align: center;
    padding: 0;
    margin: 0 auto;
    width: 100%;
  }
}
.center {
    text-align: center;
}