html, 
body {
    height: 100%;
    -webkit-font-smoothing: antialiased;
}

body {
  color: #0B1E5C;
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

p {
	font-weight: 200;
	font-size: 18px;
}

a {
	text-decoration: none;
	color: inherit;
}

h1 {
	font-size: 4em;
	margin: 0.5em 0;
}

.bold {
	font-weight: 700;
}

.content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	height: 100%;
}

.top {
  background-color: #F6EADE;
  -webkit-box-flex: 8;
      -ms-flex-positive: 8;
          flex-grow: 8;
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  padding: 15px;
}

.bottom {
  background-color: #DBEDF3;
  -ms-flex-preferred-size: 100px;
      flex-basis: 100px;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}

.flex-center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: center;
}

.bottom p {
	font-size: 16px;
}