@import url("fonts.css");

:root {
	--accent-1: #283fe6;
}

* {
	box-sizing: border-box;
}

body {
	background-color: black;
	color: var(--accent-1);
	margin: 0;
}

.root {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100vh;
}

.floating-container {
	display: flex;
	flex-direction: row;
	/* align-items: center; */
	justify-content: center;
	gap: 100px;
	height: 300px;
	width: 100vw;
}

.server-info-container {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: fit-content;
	padding-top: 60px;
	font-size: 15px;
	font-weight: 700;
}

.server-info-container--server-id {
	font-size: 10pt;
	margin-top: 6px;
	display: block;
}

.server-logo {
	height: 40px;
	margin-bottom: 5px;
}

.separator-line {
	display: block;
	width: 0;
	border-right: 1px solid #283fe6;
	height: 100%;
}

.info-container {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 400px;
	padding-top: 60px;
}

.info-container--status-text {
	font-size: 17px;
	font-weight: 500;
}

.info-container h1 {
	margin-bottom: 12px;
	text-box-trim: trim-both;
	text-box-edge: cap alphabetic;
}

@media screen and (max-width: 900px) {
	.floating-container {
		gap: 50px;
	}
}

@media screen and (max-width: 700px) {
	.separator-line {
		display: none;
	}

	.info-container {
		text-align: center;
		padding: 20px;
	}

	.server-info-container {
		width: 100vw;
		position: absolute;
		bottom: 0;
		padding: 30px;
		padding-bottom: 40px;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		border-top: 1px solid var(--accent-1);
		text-align: right;
	}

	.server-logo {
		height: 30px;
		margin-bottom: 0;
	}
}
