@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&display=swap');

* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}

body {
	font-family: 'IBM Plex Mono', Arial, Helvetica, sans-serif;
	background-color: #666;
	background-image: url('../images/server.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	font-size: 1rem;
}

.container {
	padding: 2rem;
	width: 60%;
	height: 60vh;
	display: flex;
	flex-direction: column;
	align-items: center	;
	justify-content: space-between;
	margin: 0 auto;
	color: #e9d4da;
	margin-top: 2rem;
	border-radius: 2rem;
	/* border: 1px solid #eca2a288; */
	border: none;
	background-color: #64575777;
	box-shadow: 3px 2px 5px #61535366;
}

.heading {
	color: #e9d4da;
	/* color: #222222; */
	font-weight: 900;
	font-size: 2.5rem;
}

.warning {
	color: #FF7D7D;
}

label {
	font-size: 1.3rem;
}

input[type="text"] {
	font-family: 'IBM Plex Mono', Arial, Helvetica, sans-serif;
	outline: none;
	text-align: right;
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #FF7D7D;
	font-size: 1.3rem;
	color: #e9d5da
}

.button {
	cursor: pointer;
	margin-left: 2rem;
	/* width: 30%; */
	text-align: center;
	font-size: 1.2rem;
	border: none;
	/* letter-spacing: .5rem; */
	padding: 0.3rem 1rem;
	font-weight: 900;
	color: #e9d5da;
	border-radius: 3px;
	background-color: #4E6C50;
}

.button:hover {
	filter: brightness(120%);
}

table {
	/* border: 1px solid black; */
	color: #e9d5da;
	border-radius: 3px;
}

tr,
th,
td {
	font-family: 'IBM Plex Mono', Arial, Helvetica, sans-serif;
	font-size: 1.3rem;
	padding: .3rem .4rem;
	border-radius: 3px;
}

th {
	background-color: #946f6faa;
	color: #000;
	/* border-left: 1px solid black; */
	border-left: 1px solid transparent;
}

td.t-data {
	background-color: #6c3e3e99;
	/* border-left: 1px solid black; */
	/* border-top: 1px solid black; */
	border-left: 1px solid transparent;
	border-top: 1px solid transparent;
	text-align: right;
}

td.t-desc {
	background-color: #b3909099;
	color: #000;
	/* border-top: 1px solid black;  */
	border-top: 1px solid transparent;
}

@media screen and (max-width: 1300px) {
	html {
		font-size: 90%;
	}
	
	.container {
		background-color: transparent;
		border: none;
		width: 100%;
		box-shadow: none;
	}

	th {
	background-color: #946f6f;
	}

	td.t-data {
	background-color: #6c3e3e;
	}

	td.t-desc {
		background-color: #b39090;
	}

}

@media screen and (max-width: 700px) {
	html {
		font-size: 80%;
	}
	.container {
		background-color: transparent;
		border: none;
		width: 100%;
	}
}

@media screen and (max-width: 600px) {
	html {
		font-size: 67%;
	}	
}

@media screen and (max-width: 500px) {
	html {
		font-size: 52%;
	}
}

@media screen and (max-width: 400px) {
	html {
		font-size: 46%;
	}
}
