/*
Palette:
#ff5f42
#1c3e5b
#e6e6ea
#f4f4f8
#f4f1bb
*/

* {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #1C3E5B;
  color: #f4f4f8;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

button,
.button {
  background: #FF5F42;
  padding: 0.5em 1em;
  border-radius: 0.4em;
  border: 0.1em solid #FF5F42;
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-size: 1.1em;
}

button:hover,
.button:hover {
  border-color: #fff;
}


input,
select {
  font-size: 1em;
  padding: 0.5em;
}


section.legal {
  text-align: center;
  font-size: 0.8em;
}