/*
			COLORS
	Green:			#6FD82F
	Orange:			#FF8700
	Red:			#EC0000
*/


/*	FONT FACE	*/

@font-face {
	font-family: 'Gotham';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../font/Gotham-Book.otf') format('opentype');
	src: url('../font/Gotham-Book.woff') format('woff');
}

@font-face {
	font-family: 'Gotham';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('../font/Gotham-Medium.otf') format('opentype');
	src: url('../font/Gotham-Medium.woff') format('woff');
}

@font-face {
	font-family: 'Gotham';
	font-style: normal;
	font-weight: 900;
	font-display: swap;
	src: url('../font/Gotham-Black.otf') format('opentype');
	src: url('../font/Gotham-Black.woff') format('woff');
}


/*	GLOBAL	*/

* {
	box-sizing: border-box;
}

body {
	font-family: 'Gotham';
	background: black;
	color: white;
	margin: 0;
	padding: 0;
	line-height: 1.5;

	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
}

h1 {
	font-size: 56px;
	font-weight: 900;
}

h2 {
	font-size: 40px;
	font-weight: 500;
}


/*	LAYOUT	*/

.layout {
	display: flex;
	justify-content: center;
	flex-grow: 1;
}


/*	CONTENT	*/

.content {
	display: flex;
	align-items: center;
	flex-grow: 1;
	max-width: 1600px;
	margin: 80px 32px 0;
}

.content > div {
	width: 50%;
	padding: 0 16px;
	align-self: flex-start;
}

.content .content__second {
	align-self: center;
}

.content__first {
	height: calc(100vh - 200px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}


/*	STATUS	*/
.status, .status__last-checked {
	display: none; /* Hide by default */
}

.status h1 {
	margin-bottom: 0;
}

.status__circle {
	margin-bottom: 32px;
}

.status--success {
	color: #6FD82F;
}

.status--warning {
	color: #FF8700;
}

.status--alert {
	color: #EC0000;
}

.status__time {
	font-weight: 100;
	margin-left: 40px;
}


/*	LISTS	*/

ul.list--status {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 20px;
	font-weight: 500;
}

ul.list--status li {
	position: relative;
	border-bottom: 1px solid #3E3E3E;
}

ul.list--status li a,
ul.list--status li span {
	color: white;
	text-decoration: none;
	display: block;
	padding: 16px 80px 16px 32px;
	transition: color 0.2s ease-in-out;
}

ul.list--status li a:hover {
	color: #969696;
}

ul.list--status li:last-of-type {
	border-bottom: 0;
}

ul.list--status li::before {
	content: "• ";
	position: absolute;
	left: 0;
	top: 12px;
	font-size: 40px;
	line-height: 1;
	color: white;
	pointer-events: none;
}

ul.list--status li::after {
	content: "Attention";
	position: absolute;
	top: 21px;
	right: 0;
	font-size: 14px;
	pointer-events: none;
}

ul.list--success li::after {
	content: "Online";
}

ul.list--alert li::before,
ul.list--alert li::after {
	color: #EC0000;
}

ul.list--warning li::before,
ul.list--warning li::after {
	color: #FF8700;
}

ul.list--success li::before,
ul.list--success li::after {
	color: #6FD82F;
}

/*	PANEL	*/

.panel {
	background: #1A1A1A;
	padding: 24px 40px;
	border-radius: 10px;
	margin-bottom: 80px;

	display: none;
}


/*	FOOTER	*/

.footer {
	display: flex;
	justify-content: center;
	height: 80px;
}

.footer__logo img {
	margin: 0 16px;
}

.block {
	display: block;
}

/*	MOBILE VERSION	*/

@media screen and (max-width: 1023px) {
	.content {
		flex-direction: column;
	}
	.content > div {
		width: 100%;
		padding: ;
		align-self: auto;
	}
	.content__first {
		height: auto;
		margin-bottom: 40px;
	}
}