/*
 * File: style.css
 * Project: mern_backend
 * File Created: Monday, 22nd January 2024 4:56:33 pm
 * -----
 * Last Modified: Saturday, 10th February 2024 5:50:22 pm
 * Modified By: MAX809
 */

@import url("https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap");

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

html {
	font-family: "Share Tech Mono", monospace;
	font-size: 2.5rem;
}

body {
	min-height: 100vh;
	background-color: #000;
	color: whitesmoke;
	display: grid;
	place-content: center;
	padding: 1rem;
}

span,
p {
	color: #6da4c0 !important;
}
