@import url("https://fonts.googleapis.com/css?family=Montserrat:400,600&display=swap");

* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
}

*:focus {
  outline: 0;
}

html,
body,
#root {
  height: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
}

body,
input,
button {
  font: 14px "Montserrat", sans-serif;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px 0px;
}

.logo {
  width: 20%;
}

section h1 {
  padding: 0px 20px;
  color: #aaa;
  font-size: 1.75em;
}

section article {
  padding: 0px 20px;
}

section article h2 {
  color: #2764a0;
  margin: 20px 0px;
  font-size: 1.5em;
  font-weight: 900;
}

section article h3 {
  color: #619043;
  margin: 10px 0px;
  font-size: 1.2em;
  font-weight: 600;
}

section article p {
  line-height: 24px;
  text-align: left;
  font-size: 1.1em;
  color: #777;
  margin-bottom: 20px;
}
