@charset "utf-8";
/* CSS Document */

html {
    height: 100%;
    overflow: auto;
	padding: 0;
    margin: 0;  
}

body {
    background-color:#141019;
	background: radial-gradient(at 50% -20%, #908392, #0d060e) fixed;
    height: 100%;
	padding: 0;
    margin: 0;
}

div#outer {
    display: table;
    height: 100%;
    width: 100%;
}
	
div#inner {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
	
div#container {
	display: flex;
	flex-direction: column;
	justify-content: center;
    min-width: 800px;
    min-height: 580px;
}
	
img {
    width: 400px;
    height: 400px;
    margin: 30px 0;
}

p#header {
    font-family: Roboto-Medium;
    font-size: 28px;
    color: #ffffff;
    text-align: center;
    line-height: 36px;
    margin-top: 0;
    margin-bottom: 12px;
}
	
p#paragraph {
    font-family: Roboto-Regular;
    font-size: 13px;
    color: #ffffff;
    text-align: center;
    line-height: 20px;
	margin: 0 auto;
}


.btn {  
	border: 2px solid black;
	background-color: transparent;
	border-radius: 6px;
	color: black;
	padding: 5px 28px;
	font-size: 14px;
	cursor: pointer;
}

/* Green */
.success {
	border-color: #4CAF50;
	color: #4CAF50;
}

.success:hover {
	background-color: #4CAF50;
	color: white;
}

/* Blue */
.info {
	border-color: #2196F3;
	color: #2196F3;
}

.info:hover {
	background: #2196F3;
	color: white;
}

/* Orange */
.warning {
	border-color: #ff9800;
	color: #ff9800;
}

.warning:hover {
	background: #ff9800;
	color: white;
}

/* Red */
.danger {
	border-color: #f44336;
	color: #f44336;
}

.danger:hover {
	background: #f44336;
	color: white;
}

/* Gray */
.default {
	border-color: #e7e7e7;
	color: black;
}

.default:hover {
	background: #e7e7e7;
}