:root {
  --mueller-red: #c8102e;
  --mueller-dark-gray: #75787b;
}

html, body {
  font-family: "Raleway", sans-serif;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

a {
  color: var(--mueller-red);
}

h1 {
  text-align: center;
  font-size: 3.2em;
}

img {
  max-width: 100%;
  height: auto;
}

.header {
  height: 96px;
  background-color: var(--mueller-red);
}

.header img {
  margin-left: 16px;
}

.main {
  flex: auto;
  padding: 32px;
}

.main p {
  text-align: justify;
}

.footer {
  height: 48px;
  background-color: var(--mueller-red);
  color: white;
  text-align: right;
  padding-right: 16px;
}

.titleMueller {
  color: var(--mueller-red);
}

.titleAtHome {
  color: var(--mueller-dark-gray);
}

p.tagLine {
  color: var(--mueller-dark-gray);
  text-align: center;
  font-size: 2em;
}

.storeBadges {
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: center;
}

.storeBadge {
  width: 300px;
}

.primaryContent {
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: center;
}

.primaryContent p {
  max-width: 500px;
  margin-right: 16px;
}