/*
Palette:
#ff5f42
#1c3e5b
#e6e6ea
#f4f4f8
#f4f1bb
*/

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background: #2a2a2a;
  background: linear-gradient(120deg, #2a2a2a, #050505);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

a {
  color: inherit;
}

button,
.button {
  background: #9b59b6;
  padding: 0.5em 1em;
  border-radius: 0.4em;
  border: 0.1em solid #9b59b6;
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  cursor: pointer;
  text-align: center;
}

button:hover,
.button:hover {
  border-color: #fff;
}

button.secondary,
.button.secondary {
  background: none;
}


input,
select {
  font-size: 1em;
  padding: 0.5em;
}


section.legal {
  text-align: center;
  font-size: 0.8em;
}


footer nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

footer nav li {
  margin: 0 1em;
  display: block;
  list-style: none;
}

header h1 img {
  width: 100%;
  max-height: 3em;
  max-width: 100%;
}

header h1 {
  font-size: 4em;
  font-family: 'Oswald', sans-serif;
  margin: 1rem 0;
  flex-grow: 0;
  flex-shrink: 0;
}

section {
  flex-grow: 1;
}

footer {
  flex-grow: 0;
  flex-shrink: 0;
}

footer nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

footer nav li {
  margin: 0 1em;
  display: block;
  list-style: none;
}
