/* Fonts */

/*
@font-face {
  font-family: "MacGuffin-Jumble";
  src: url('../fonts/MacGuffin-Jumble.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
*/


/* Body */

body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}


/* Typography */

h1 {
  font-size: 1.5rem;
  margin-bottom: .5rem;

}

h2 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.15rem;
}

p {
  font-size: 1rem;
  line-height: 1.2;
  margin: 0 0 20px;
}

ul {
  margin-bottom: 30px;
}

/* Brand font utility class */
.brand-font {
  font-family: Helvetica,Arial,sans-serif;
  font-weight: bold;
  line-height: 1;
}

/* Header */

.header {
  display: flex;
  text-align: center;
  border-bottom: 1px solid #111;
  height: 80px;
  background: white;
}

.header-link {
  display: flex;
  margin: 0 auto;
}

.header-logo {
  content: "";
  width: 100px;
  background: url("../images/WFlogo-850x418.png") no-repeat center;
  background-size: 100px;
  background-color: white;
  margin: 0 auto;
}

/* Content */

.content {
  display: flex;
  margin: 50px 0 0;
}

.content-description {
  flex: 1;
  margin: 0 50px;
}

.three-across {
  display: flex;
  text-align: center;
  margin: 0 50px;
}

.three-across-image {
  width: 80%
}

.three-across-description {
  margin: 20px 140px 50px;
}

.buy-link {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 20px;
  color: white;
  background-color: rgb(0, 132, 255);
  text-decoration: none;
}


/* Footer */

.footer {
  padding: 50px 0;
  text-align: center;
  height: 100px;
  background: rgb(242, 242, 242);
  color: rgb(179, 179, 179);
}

.footer  p {
  font-size: 14px;
}


