@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;
}

h2 {
	height: auto;

	padding-bottom: 0.5rem;
}
h3 {
	height: auto;

	padding-bottom: 0.5rem;
}

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: #47ff78;
	color: #363636;
	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: left;
	font-size: 0.8rem;
	color: #505050;
}

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

/* ANIMATION LOGO */

    .logo-scene {
        position: relative;
        width: 400px;
        height: auto;
        margin: 0 20px;
		padding-bottom: 0;
    }
    .logo-base {
        width: 55%;  /* or another value that matches your design */
        display: block;
    }

    .fruit {
        position: absolute;
        width: 100px;
        left: 0%;
        top: 0;                    /* anchor to container top */
        transform: translate(-50%, -220px) rotate(0deg);
        animation: fall-bounce-roll 1.4s cubic-bezier(.22, .61, .36, 1) forwards;
        animation-fill-mode: forwards;
    }
	@keyframes fall-bounce-roll {
	0%   { transform: translate(-50%, -110px) rotate(0deg); }

	/* first impact */
	35%  { transform: translate(-50%,  68px) rotate(200deg); }

	/* first rebound up, easing into the top */
	48%  { transform: translate(-50%, -14px) rotate(250deg); }
	55%  { transform: translate(-50%,   5px) rotate(260deg); }

	/* second impact */
	65%  { transform: translate(-50%,  68px) rotate(300deg); }

	/* second rebound, smaller and softer */
	70%  { transform: translate(-50%,  -4px) rotate(320deg); }
	76%  { transform: translate(-50%,   3px) rotate(330deg); }

	/* last tiny bounce while rolling */
	83%  { transform: translate(-50%,  68px) rotate(350deg); }
	90%  { transform: translate(calc(-50% + 15px),  0px) rotate(370deg); }

	/* final rest position */
	100% { transform: translate(calc(-53% + 20px), 68px) rotate(380deg); }
	}

