@font-face {
	font-family: 'Geist Mono';
	src: url('GeistMono-Regular.woff2') format('woff2'), url('GeistMono-Regular.woff') format('woff'),
		url('GeistMono-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	--font-family: 'Geist Mono', monospace;
	padding-bottom: 3rem;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: var(--font-family);
	font-weight: 400;
}

html,
body {
	color: #363636;
	font-size: 0.9rem;
}

body {
	padding: 0 20px;
}

#root {
	margin: 0 auto;
	max-width: 50rem;
}

#bagel {
	user-select: none;
	line-height: 1;
	font-size: 0.3rem;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	height: 300px;
	max-width: 300px;
}

p {
	padding-bottom: 1rem;
}

h1 {
	height: auto;

	padding-bottom: 1rem;
}

li {
	margin-left: 1rem;
	line-height: 1.3rem;
}

ul {
	margin-left: 1rem;
	list-style-type: none;
}

.donation-cards {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(3, 1fr);
	padding-bottom: 1rem;
}

.donation-card {
	background: #f0f0f0;
	padding: 1rem;
	border-radius: 0.5rem;

	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.donation-card p {
	padding: 0;
	font-size: 0.9rem;
}

.donation-card a {
	text-decoration: none;
	color: #363636;
	background: #363636;
	color: #f0f0f0;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	text-align: center;
	transition: all 0.2s ease-in-out;
}

.advisor-button {
	text-decoration: none;
	color: #f0f0f0;
	background: #f0f0f0;
	color: #363636;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	text-align: center;
	transition: all 0.2s ease-in-out;
}

.advisor-button:hover {
	background: #fff;

.donation-card a:hover {
	background: #505050;
}

.donation-note {
	text-align: center;
	font-size: 0.8rem;
	color: #505050;
}

@media only screen and (max-width: 650px) {
	.donation-cards {
		grid-template-columns: repeat(1, 1fr);
	}
}
