html {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

body {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

div.slide {
    text-align: center;
    display: table;
    height: 100%;
    width: 100%;
}

div.slide div.table-cell {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.middle {
    margin: 0 auto;
    position: relative;
    width: 80%;
}

h1, h2, h3, h4 {
    text-align: center;
}

h1 {
    font-size: 350%;
}

h1, h2, h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: #651fff;
}

a:active, a:visited {
    color: #4615b2;
}

ul.faq li {
    margin-top: 12px;
}

div.faq {
    text-align: start;
}

footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
}

p.cpyrght {
    float: right;
    text-align: right;
    margin-right: 6px;
}

@media (prefers-color-scheme: light) and (prefers-color-scheme: no-preference) {
    body {
        color: rgba(0, 0, 0, .60);
        background-color: #FFF;
    }
    h1, h2, h3 {
        color: rgba(0, 0, 0, .87);
    }
    footer {
        background: linear-gradient(to bottom, rgba(255,255,255,0), #FFF);
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: rgba(255, 255, 255, .60);
    }
    h1, h2, h3 { 
        color: rgba(255, 255, 255, .87);
    }
    footer {
        background: linear-gradient(to bottom, rgba(0,0,0,0), #121212);
    }
}