* {
	padding: 0px;
	margin: 0px;
	font-family: inter;
	color: #455572;
}

body {
	background-color: #f8f9fa;
}

@font-face {
	font-family: "inter";
	src: url("/assets/fonts/Inter_28pt-Regular.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: "inter";
	src: url("/assets/fonts/Inter_28pt-Italic.ttf") format("truetype");
	font-weight: normal;
	font-style: italic;
}
@font-face {
	font-family: "inter";
	src: url("/assets/fonts/Inter_28pt-Bold.ttf") format("truetype");
	font-weight: bold;
	font-style: normal;
}
@font-face {
	font-family: "inter";
	src: url("/assets/fonts/Inter_28pt-BoldItalic.ttf") format("truetype");
	font-weight: bold;
	font-style: italic;
}

.card {
	border-radius: 0.75rem;
	box-shadow:
		0 1px 3px 0 rgba(0, 0, 0, 0.1),
		0 1px 2px -1px rgba(0, 0, 0, 0.1);
	padding: 1rem;
	background-color: white;
}

.button {
	background-image: linear-gradient(
		310deg,
		rgb(255, 133, 0),
		rgb(251, 207, 51)
	);
	color: white;
	border-radius: 0.5rem;
	border: 0px;
	font-weight: bold;
	cursor: pointer;
	text-align: center;
	transition: 150ms ease-in;
	font-size: 0.875rem;
	padding: 0.5rem;
	align-content: center;
	text-decoration: none;
}

#grayout {
	position: fixed;
	left: 0px;
	top: 0px;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: 0.5;
	z-index: 9999;
}
