/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: 'Courier New', Courier, monospace;
  background: #ddd;
  color: 444;
  line-height: 1.5rem;
}

img {
  max-width: 100%;
  width: auto
}

.layout {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
  max-width: 980px;
  margin: 0 auto;
  padding: 1rem;
  text-align: center;
}

.main-content {
}

.footer {
}

.footer-legal-notice {
  font-size: 0.75rem;
  color: #666;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;

}