@import url('https://fonts.googleapis.com/css?family=Quicksand:300&display=swap');

html { 
    background: 
		/* top, transparent black, faked with gradient */  
		radial-gradient(at 50% 50%, #000B 5%, #0004),
        url(../images/background.jpg) no-repeat right center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
   
  }
  
  .flex-center {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
    

  h1 {
    font-family: 'Quicksand', sans-serif;
    color: white;
    display: inline-table;
   vertical-align:middle;
   line-height:100%;            
}
