/* Place your CSS styles in this file */

h1 {
    text-align: center;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
}

html {
  min-height: 100%;/* fill the screen height to allow vertical alignement */
  display: grid; /* display:flex works too since body is the only grid cell */
}

body {
  margin: auto;
}

.center {
  /*height: 500px;*/
  display: flex;
  align-items: center;
  justify-content: center;
  /*border: 3px solid #dbe4ed;  Border color is optional */  
}