* {
  box-sizing: border-box; }

html, body {
  font-family: Arial, sans-serif;
  padding: 0;
  margin: 0;
  font-size: 16px;
  height: 100%; }

.root {
  min-height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column; }

header {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  color: #525355;
  background-color: #f0f0f0; }
  header .text {
    flex: 1;
    padding: 15px; }
    header .text .container {
      margin: 30px auto;
      max-width: 20em; }
    header .text * {
      margin: 0 0 20px; }
    header .text h1 {
      text-transform: uppercase;
      font-size: 50px;
      letter-spacing: 2px;
      margin: 0; }
    header .text h2 {
      font-size: 22px; }
    header .text p {
      font-size: 16px;
      line-height: 24px; }
  header .image {
    flex: 1;
    height: auto;
    background-image: url("img/header-image.jpg");
    background-position: 50% 100%;
    background-size: cover; }

.button {
  display: inline-block;
  border-radius: 5px;
  border: 1px solid #908f8f;
  background-color: #848485;
  color: white;
  letter-spacing: 2px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  padding: 4px 8px; }
  .button:hover, .button:active {
    background-color: #908f8f;
    border-color: #a0a0a0; }

main {
  padding: 50px 0;
  text-align: center; }
  main h2 {
    color: #525355;
    font-size: 25px;
    text-transform: uppercase; }
    main h2:last-of-type {
      margin-top: 2em; }
  main table {
    margin: 0 auto;
    max-width: 38em; }
  main .cell {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #3c4458;
    text-align: left;
    padding: 15px; }
    main .cell img {
      width: 54px;
      height: auto;
      margin-right: 0.75em; }
    main .cell p {
      line-height: 22px; }
  main .products {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; }
    main .products a {
      float: left;
      text-decoration: none;
      margin: 0 1em; }
    main .products img {
      width: auto;
      height: 220px; }

/*
footer {
  .logo {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1em;
    text-transform: uppercase;
    font-weight: bold;
    p {
      float: left;
      text-align: right;
      margin-right: 10px;
      color: #333;
    }
    img {
      width: 105px;
      height: auto;
    }
  }
}
*/
footer {
  width: 100%;
  padding-bottom: 50%;
  position: relative; }
  footer div {
    position: absolute;
    top: 0;
    bottom: 0;
    background-size: auto 100%;
    background-repeat: no-repeat; }
    footer div.left {
      width: 25%;
      left: 0;
      background-image: url("img/footer-left.jpg");
      background-position: 0 100%;
      border-right: 8px solid white; }
    footer div.right {
      width: 75%;
      right: 0;
      background-image: url("img/footer-right.jpg");
      background-position: 100% 100%; }

/*# sourceMappingURL=styles.css.map */
