html {
	height: 100%;
}

body {
  background-color: #2B91DC;
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'proxima-nova', sans-serif;
  color: white;

  display: flex;
  flex-direction: column;
}

* {
  box-sizing: content-box;
}

.outer-container {
  height: 100%;
  display: grid;
  align-items: center;
  justify-content: center;

  padding: 1rem 2rem;
}

