html {
    color-scheme: light dark;
}

:root {
    --text-color: #323130;
    --content-bg: rgb(255, 255, 255);
    --bg-overlay: rgb(13, 5, 121);
    --button-bg: rgb(13, 5, 121);
    --button-border: rgb(13, 5, 121);
    --button-hover: rgb(27, 15, 188);
    --button-focus-outline: rgba(22, 13, 160, 0.35);
}

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: var(--text-color);
    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: var(--bg-overlay);
    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: var(--content-bg);
    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: var(--button-bg);
    border: 1px solid var(--button-border);
    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: var(--button-hover);
}

.button:focus-visible {
    outline: 3px solid var(--button-focus-outline);
    outline-offset: 2px;
}

@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #f3f2f1;
        --content-bg: rgb(26, 26, 29);
        --bg-overlay: rgb(8, 5, 56);
        --button-bg: rgb(91, 86, 255);
        --button-border: rgb(91, 86, 255);
        --button-hover: rgb(113, 109, 255);
        --button-focus-outline: rgba(151, 147, 255, 0.45);
    }

    .logo {
        filter: invert(1);
    }
}