html {
    display: table;
    font-family: "Segoe UI Webfont",-apple-system,"Helvetica Neue","Lucida Grande","Roboto",sans-serif;
    height: 100%;
	text-align: left;
    line-height: 1.6em;
	width: 100%;
    background: #004A89;
	background-size: cover;
	background-clip: border-box;

}
body {
    position: relative;
    height: 100%;
	width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

h1,p,a {
    color: #323130;
    margin: 0;    
}
h1 {
	font-size: 1.1em;
	font-weight: 400;
    margin-bottom: 0.5em;
}
p {
    font-size: 1em;
}
a {
	font-weight: 300;
    text-decoration: none;
}  
a:hover {
    text-decoration: underline;
}
a.small {
    font-size: 0.8em;
}
.bg {
    position: relative;
    height: 100%;
	width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/background.png);
}    
.content {
    margin: auto ;
    background: #fff;
    padding: 3em;
    width: fit-content;  
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    -webkit-box-shadow: 0px 10px 23px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 10px 23px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 10px 23px 0px rgba(0, 0, 0, 0.2);
    }
.button {
    background-color: #F0F0F0;
    border: 2px solid #003867;
    color: black;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 4px 2px;
    margin-top: 60px;
    transition-duration: 0.2s;
    cursor: pointer;
    }
.button:hover {background-color: #bedbf5;}    