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: #000000;
	background-size: cover;
	background-clip: border-box;
    overflow: hidden;

}
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;
    filter: saturate(55%) brightness(65%) contrast(92%);
    overflow: hidden;
}    

.bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(13, 5, 121);
    pointer-events: none;
    mix-blend-mode: overlay;
}

.bg.bg--fading {
    opacity: 0;
    transition: opacity 900ms ease-out;
}

.bg.bg--fading.bg--loaded {
    opacity: 1;
}

.content {
    margin: auto ;
    background: rgb(255, 255, 255);
    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.5);
    -moz-box-shadow: 0px 10px 23px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 10px 23px 0px rgba(0, 0, 0, 0.5);
    }
.button {
    background-color: rgb(13, 5, 121);
    border: 1px solid rgb(13, 5, 121);
    color: #ffffff;
    padding: 14px 28px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.2;
    border-radius: 4px;
    margin: 4px 2px;
    margin-top: 40px;
    cursor: pointer;
}

.button:hover {
    background-color: rgb(27, 15, 188);
}

.button:focus-visible {
    outline: 3px solid rgba(22, 13, 160, 0.35);
    outline-offset: 2px;
}