body {
	background-color: #333; /* dark gray background */
	color: #fff; /* white text */
	font-family: "Inter", sans-serif; /* modern font */
	margin: 0;
	padding: 0;
	height: 100vh; /* make body full screen height */
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.container {
	background-color: #444; /* slightly darker gray background for container */
	margin: 20px;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.triangle {
	width: 100px; /* set width of triangle img */
	height: 100px; /* set height of triangle img */
}

h1 {
	font-size: 24px;
	margin-bottom: 10px;
	font-weight: 500; /* medium font weight */
}

p {
	font-size: 16px;
	margin-bottom: 20px;
}
